From 4ab995dd1ef9b1b4d22f27223a7d28b12895ff93 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 17 Apr 2011 20:08:03 +0200 Subject: [PATCH 1/3] Complete "people tag" to "list" in UI messages. Update translator documentation accordingly. Probably a few cases left where "tag[ged[" has to be replaced by "list[ed]". --- actions/addpeopletag.php | 6 ++-- actions/editpeopletag.php | 4 +-- actions/peopletagsubscribers.php | 16 +++++----- actions/profilecompletion.php | 4 +-- actions/profiletagbyid.php | 4 +-- actions/publicpeopletagcloud.php | 28 ++++++++--------- actions/removepeopletag.php | 14 ++++----- actions/selftag.php | 6 ++-- actions/showprofiletag.php | 2 +- actions/subscribepeopletag.php | 20 ++++++------ actions/tagprofile.php | 32 ++++++++++---------- actions/unsubscribepeopletag.php | 12 ++++---- classes/Profile_tag.php | 6 ++-- classes/Profile_tag_subscription.php | 8 ++--- lib/atomlistnoticefeed.php | 4 +-- lib/peopletageditform.php | 14 ++++----- lib/peopletaggroupnav.php | 2 +- lib/peopletaglist.php | 2 +- lib/peopletagnoticestream.php | 6 ++-- lib/peopletags.php | 8 ++--- lib/peopletagsforusersection.php | 4 +-- lib/subscribepeopletagform.php | 2 +- lib/togglepeopletag.php | 10 +++--- lib/unsubscribepeopletagform.php | 2 +- plugins/OStatus/OStatusPlugin.php | 6 ++-- plugins/OStatus/actions/ostatusinit.php | 18 +++++------ plugins/OStatus/actions/ostatuspeopletag.php | 10 +++--- plugins/OStatus/actions/ostatustag.php | 2 +- plugins/OStatus/actions/pushhub.php | 2 +- plugins/OStatus/classes/Ostatus_profile.php | 10 +++--- 30 files changed, 132 insertions(+), 132 deletions(-) diff --git a/actions/addpeopletag.php b/actions/addpeopletag.php index a1260efbd3..c3e312d99c 100644 --- a/actions/addpeopletag.php +++ b/actions/addpeopletag.php @@ -106,8 +106,8 @@ class AddpeopletagAction extends Action $this->peopletag = Profile_list::staticGet('id', $id); if (empty($this->peopletag)) { - // TRANS: Client error displayed trying to reference a non-existing people tag. - $this->clientError(_('No such people tag.')); + // TRANS: Client error displayed trying to reference a non-existing list. + $this->clientError(_('No such list.')); return false; } @@ -161,7 +161,7 @@ class AddpeopletagAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); - // TRANS: Title after subscribing to a people tag. + // TRANS: Title after subscribing to a list. $this->element('title', null, _('Subscribed')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/actions/editpeopletag.php b/actions/editpeopletag.php index 3a66458c9e..115049f7ab 100644 --- a/actions/editpeopletag.php +++ b/actions/editpeopletag.php @@ -260,7 +260,7 @@ class EditpeopletagAction extends OwnerDesignAction return; } else if (Profile_list::descriptionTooLong($description)) { $this->showForm(sprintf( - // TRANS: Client error shown when providing too long a description when editing a people tag. + // TRANS: Client error shown when providing too long a description when editing a list. // TRANS: %d is the maximum number of allowed characters. _m('Description is too long (maximum %d character).', 'Description is too long (maximum %d characters).', @@ -318,7 +318,7 @@ class EditpeopletagAction extends OwnerDesignAction 'tag' => $tag)), 303); } else { - // TRANS: Edit people tag form success message. + // TRANS: Edit list form success message. $this->showForm(_('Options saved.')); } } diff --git a/actions/peopletagsubscribers.php b/actions/peopletagsubscribers.php index 5cdccfa15b..ebc3a9f494 100644 --- a/actions/peopletagsubscribers.php +++ b/actions/peopletagsubscribers.php @@ -92,8 +92,8 @@ class PeopletagsubscribersAction extends OwnerDesignAction $this->peopletag = Profile_list::pkeyGet(array('tagger' => $user->id, 'tag' => $tag)); if (!$this->peopletag) { - // TRANS: Client error displayed trying to reference a non-existing people tag. - $this->clientError(_('No such people tag.'), 404); + // TRANS: Client error displayed trying to reference a non-existing list. + $this->clientError(_('No such list.'), 404); return false; } @@ -103,14 +103,14 @@ class PeopletagsubscribersAction extends OwnerDesignAction function title() { if ($this->page == 1) { - // TRANS: Page title for list of people tag subscribers. - // TRANS: %1$s is a tag, %2$s is a user nickname. - return sprintf(_('Subscribers of people tagged %1$s by %2$s'), + // TRANS: Page title for list of list subscribers. + // TRANS: %1$s is a list, %2$s is a user nickname. + return sprintf(_('Subscribers to list %1$s by %2$s'), $this->peopletag->tag, $this->tagger->nickname); } else { - // TRANS: Page title for list of people tag subscribers. - // TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. - return sprintf(_('Subscribers of people tagged %1$s by %2$s, page %3$d'), + // TRANS: Page title for list of list subscribers. + // TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. + return sprintf(_('Subscribers to list %1$s by %2$s, page %3$d'), $this->peopletag->tag, $this->tagger->nickname, $this->page); } diff --git a/actions/profilecompletion.php b/actions/profilecompletion.php index 00831b2a22..045bf68a7f 100644 --- a/actions/profilecompletion.php +++ b/actions/profilecompletion.php @@ -97,8 +97,8 @@ class ProfilecompletionAction extends Action $this->peopletag = Profile_list::staticGet('id', $id); if (empty($this->peopletag)) { - // TRANS: Client error displayed trying to reference a non-existing people tag. - $this->clientError(_('No such people tag.')); + // TRANS: Client error displayed trying to reference a non-existing list. + $this->clientError(_('No such list.')); return false; } diff --git a/actions/profiletagbyid.php b/actions/profiletagbyid.php index 3a70f54add..396e634aba 100644 --- a/actions/profiletagbyid.php +++ b/actions/profiletagbyid.php @@ -63,8 +63,8 @@ class ProfiletagbyidAction extends Action $this->peopletag = Profile_list::staticGet('id', $id); if (!$this->peopletag) { - // TRANS: Client error displayed trying to reference a non-existing people tag. - $this->clientError(_('No such people tag.'), 404); + // TRANS: Client error displayed trying to reference a non-existing list. + $this->clientError(_('No such list.'), 404); return false; } diff --git a/actions/publicpeopletagcloud.php b/actions/publicpeopletagcloud.php index e8023bc979..cb65bbb163 100644 --- a/actions/publicpeopletagcloud.php +++ b/actions/publicpeopletagcloud.php @@ -53,33 +53,33 @@ class PublicpeopletagcloudAction extends Action function title() { - // TRANS: Title for page with public people tag cloud. - return _('Public people tag cloud'); + // TRANS: Title for page with public list cloud. + return _('Public list cloud'); } function showPageNotice() { $this->element('p', 'instructions', - // TRANS: Page notice for page with public people tag cloud. + // TRANS: Page notice for page with public list cloud. // TRANS: %s is a StatusNet sitename. - sprintf(_('These are most used people tags on %s'), + sprintf(_('These are largest lists on %s'), common_config('site', 'name'))); } function showEmptyList() { - // TRANS: Empty list message on page with public people tag cloud. + // TRANS: Empty list message on page with public list cloud. // TRANS: This message contains Markdown links in the form [description](link). - $message = _('No one has [tagged](%%doc.tags%%) anyone yet.') . ' '; + $message = _('No one has [listed](%%doc.tags%%) anyone yet.') . ' '; if (common_logged_in()) { - // TRANS: Additional empty list message on page with public people tag cloud for logged in users. - $message .= _('Be the first to tag someone!'); + // TRANS: Additional empty list message on page with public list cloud for logged in users. + $message .= _('Be the first to list someone!'); } else { - // TRANS: Additional empty list message on page with public people tag cloud for anonymous users. + // TRANS: Additional empty list message on page with public list cloud for anonymous users. // TRANS: This message contains Markdown links in the form [description](link). - $message .= _('Why not [register an account](%%action.register%%) and be the first to tag someone!'); + $message .= _('Why not [register an account](%%action.register%%) and be the first to list someone!'); } $this->elementStart('div', 'guide'); @@ -132,8 +132,8 @@ class PublicpeopletagcloudAction extends Action ksort($tw); $this->elementStart('dl'); - // TRANS: DT element on on page with public people tag cloud. - $this->element('dt', null, _('People tag cloud')); + // TRANS: DT element on on page with public list cloud. + $this->element('dt', null, _('List cloud')); $this->elementStart('dd'); $this->elementStart('ul', 'tags xoxo tag-cloud'); foreach ($tw as $tag => $weight) { @@ -173,8 +173,8 @@ class PublicpeopletagcloudAction extends Action $this->elementStart('li', $rel); - // TRANS: Link title for number of people tagged. %d is the number of people tagged. - $title = sprintf(_m('1 person tagged','%d people tagged',$weight),$weight); + // TRANS: Link title for number of listed people. %d is the number of listed people. + $title = sprintf(_m('1 person listed','%d people listed',$weight),$weight); $this->element('a', array('href' => common_local_url('peopletag', array('tag' => $tag)), 'title' => $title), $tag); $this->elementEnd('li'); diff --git a/actions/removepeopletag.php b/actions/removepeopletag.php index 2d9bd836c7..207b6747a2 100644 --- a/actions/removepeopletag.php +++ b/actions/removepeopletag.php @@ -107,8 +107,8 @@ class RemovepeopletagAction extends Action $this->peopletag = Profile_list::staticGet('id', $id); if (empty($this->peopletag)) { - // TRANS: Client error displayed trying to reference a non-existing people tag. - $this->clientError(_('No such people tag.')); + // TRANS: Client error displayed trying to reference a non-existing list. + $this->clientError(_('No such list.')); return false; } @@ -147,14 +147,14 @@ class RemovepeopletagAction extends Action $user = User::staticGet('id', $this->tagged->id); if ($user) { $this->clientError( - // TRANS: Client error displayed when an unknown error occurs while tagging a user. + // TRANS: Client error displayed when an unknown error occurs while listing a user. // TRANS: %s is a username. - sprintf(_('There was an unexpected error while tagging %s.'), + sprintf(_('There was an unexpected error while listing %s.'), $user->nickname)); } else { - // TRANS: Client error displayed when an unknown error occurs while tagging a user. + // TRANS: Client error displayed when an unknown error occurs while listing a user. // TRANS: %s is a profile URL. - $this->clientError(sprintf(_('There was a problem tagging %s. ' . + $this->clientError(sprintf(_('There was a problem listing %s. ' . 'The remote server is probably not responding correctly, ' . 'please try retrying later.'), $this->profile->profileurl)); } @@ -163,7 +163,7 @@ class RemovepeopletagAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); - // TRANS: Title after untagging a people tag. + // TRANS: Title after removing a user from a list. $this->element('title', null, _('Untagged')); $this->elementEnd('head'); $this->elementStart('body'); diff --git a/actions/selftag.php b/actions/selftag.php index c9ac3a2010..b886c3d9f7 100644 --- a/actions/selftag.php +++ b/actions/selftag.php @@ -63,9 +63,9 @@ class SelftagAction extends Action $this->tag = $this->trimmed('tag'); if (!common_valid_profile_tag($this->tag)) { - // TRANS: Client error displayed when trying to tag a profile with an invalid tag. - // TRANS: %s is the invalid tag. - $this->clientError(sprintf(_('Not a valid people tag: %s.'), + // TRANS: Client error displayed when trying to list a profile with an invalid list. + // TRANS: %s is the invalid list name. + $this->clientError(sprintf(_('Not a valid list: %s.'), $this->tag)); return; } diff --git a/actions/showprofiletag.php b/actions/showprofiletag.php index a25e233979..d1b0768d23 100644 --- a/actions/showprofiletag.php +++ b/actions/showprofiletag.php @@ -307,7 +307,7 @@ class ShowprofiletagAction extends Action array('nickname' => $this->tagger->nickname, 'profiletag' => $this->peopletag->tag)), 'class' => 'more'), - // TRANS: Link for more "People tagged x by a user" + // TRANS: Link for more "People in list x by a user" // TRANS: if there are more than the mini list's maximum. _('Show all')); $this->elementEnd('p'); diff --git a/actions/subscribepeopletag.php b/actions/subscribepeopletag.php index b0484835b7..dee0384c5d 100644 --- a/actions/subscribepeopletag.php +++ b/actions/subscribepeopletag.php @@ -56,7 +56,7 @@ class SubscribepeopletagAction extends Action if (!common_logged_in()) { // TRANS: Client error displayed when trying to perform an action while not logged in. - $this->clientError(_('You must be logged in to unsubscribe to a people tag.')); + $this->clientError(_('You must be logged in to unsubscribe from a list.')); return false; } // Only allow POST requests @@ -91,8 +91,8 @@ class SubscribepeopletagAction extends Action } if (!$this->peopletag || $this->peopletag->private) { - // TRANS: Client error displayed trying to reference a non-existing people tag. - $this->clientError(_('No such people tag.'), 404); + // TRANS: Client error displayed trying to reference a non-existing list. + $this->clientError(_('No such list.'), 404); return false; } @@ -120,18 +120,18 @@ class SubscribepeopletagAction extends Action try { Profile_tag_subscription::add($this->peopletag, $cur); } catch (Exception $e) { - // TRANS: Server error displayed subscribing to a people tag fails. - // TRANS: %1$s is a user nickname, %2$s is a people tag. - $this->serverError(sprintf(_('Could not subscribe user %1$s to people tag %2$s.'), - $cur->nickname, $this->peopletag->tag) . ' ' . $e->getMessage()); + // TRANS: Server error displayed subscribing to a list fails. + // TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). + $this->serverError(sprintf(_('Could not subscribe user %1$s to list %2$s: %3$s'), + $cur->nickname, $this->peopletag->tag), $e->getMessage()); } if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); - // TRANS: Title of form to subscribe to a people tag. - // TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. - $this->element('title', null, sprintf(_('%1$s subscribed to people tag %2$s by %3$s'), + // TRANS: Title of form to subscribe to a list. + // TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. + $this->element('title', null, sprintf(_('%1$s subscribed to list %2$s by %3$s'), $cur->nickname, $this->peopletag->tag, $this->tagger->nickname)); diff --git a/actions/tagprofile.php b/actions/tagprofile.php index e79a80aca8..4305f4bc88 100644 --- a/actions/tagprofile.php +++ b/actions/tagprofile.php @@ -74,12 +74,12 @@ class TagprofileAction extends Action function title() { if (!$this->profile) { - // TRANS: Title for people tag form when not on a profile page. - return _('Tag a profile'); + // TRANS: Title for list form when not on a profile page. + return _('List a profile'); } - // TRANS: Title for people tag form when on a profile page. + // TRANS: Title for list form when on a profile page. // TRANS: %s is a profile nickname. - return sprintf(_('Tag %s'), $this->profile->nickname); + return sprintf(_m('ADDTOLIST','List %s'), $this->profile->nickname); } function showForm($error=null) @@ -88,7 +88,7 @@ class TagprofileAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); - // TRANS: Title for people tag form when an error has occurred. + // TRANS: Title for list form when an error has occurred. $this->element('title', null, _m('TITLE','Error')); $this->elementEnd('head'); $this->elementStart('body'); @@ -104,7 +104,7 @@ class TagprofileAction extends Action { if (Event::handle('StartShowTagProfileForm', array($this, $this->profile)) && $this->profile) { $this->elementStart('div', 'entity_profile vcard author'); - // TRANS: Header in people tag form. + // TRANS: Header in list form. $this->element('h2', null, _('User profile')); $avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); @@ -147,8 +147,8 @@ class TagprofileAction extends Action 'action' => common_local_url('tagprofile', array('id' => $this->profile->id)))); $this->elementStart('fieldset'); - // TRANS: Fieldset legend for people tag form. - $this->element('legend', null, _('Tag user')); + // TRANS: Fieldset legend for list form. + $this->element('legend', null, _('List user')); $this->hidden('token', common_session_token()); $this->hidden('id', $this->profile->id); @@ -158,14 +158,14 @@ class TagprofileAction extends Action $this->elementStart('li'); $tags = Profile_tag::getTagsArray($user->id, $this->profile->id, $user->id); - // TRANS: Field label on people tag form. - $this->input('tags', _m('LABEL','Tags'), + // TRANS: Field label on list form. + $this->input('tags', _m('LABEL','Lists'), ($this->arg('tags')) ? $this->arg('tags') : implode(' ', $tags), - // TRANS: Field title on people tag form. - _('Tags for this user (letters, numbers, -, ., and _), comma- or space- separated.')); + // TRANS: Field title on list form. + _('Lists for this user (letters, numbers, -, ., and _), comma- or space- separated.')); $this->elementEnd('li'); $this->elementEnd('ul'); - // TRANS: Button text to save people tags. + // TRANS: Button text to save lists. $this->submit('save', _m('BUTTON','Save')); $this->elementEnd('fieldset'); $this->elementEnd('form'); @@ -240,8 +240,8 @@ class TagprofileAction extends Action $this->elementEnd('body'); $this->elementEnd('html'); } else { - // TRANS: Success message if people tags are saved. - $this->error = _('Tags saved.'); + // TRANS: Success message if lists are saved. + $this->error = _('Lists saved.'); $this->showForm(); } @@ -257,7 +257,7 @@ class TagprofileAction extends Action $this->elementStart('div', 'instructions'); $this->element('p', null, // TRANS: Page notice. - _('Use this form to add tags to your subscribers or subscriptions.')); + _('Use this form to add your subscribers or subscriptions to lists.')); $this->elementEnd('div'); } } diff --git a/actions/unsubscribepeopletag.php b/actions/unsubscribepeopletag.php index 9443410911..bb53766cc1 100644 --- a/actions/unsubscribepeopletag.php +++ b/actions/unsubscribepeopletag.php @@ -57,7 +57,7 @@ class UnsubscribepeopletagAction extends Action if (!common_logged_in()) { // TRANS: Client error displayed when trying to perform an action while not logged in. - $this->clientError(_('You must be logged in to unsubscribe to a people tag.')); + $this->clientError(_('You must be logged in to unsubscribe from a list.')); return false; } // Only allow POST requests @@ -92,8 +92,8 @@ class UnsubscribepeopletagAction extends Action } if (!$this->peopletag || $this->peopletag->private) { - // TRANS: Client error displayed trying to reference a non-existing people tag. - $this->clientError(_('No such people tag.'), 404); + // TRANS: Client error displayed trying to reference a non-existing list. + $this->clientError(_('No such list.'), 404); return false; } @@ -122,9 +122,9 @@ class UnsubscribepeopletagAction extends Action if ($this->boolean('ajax')) { $this->startHTML('text/xml;charset=utf-8'); $this->elementStart('head'); - // TRANS: Page title for form that allows unsubscribing from a people tag. - // TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. - $this->element('title', null, sprintf(_('%1$s unsubscribed to people tag %2$s by %3$s'), + // TRANS: Page title for form that allows unsubscribing from a list. + // TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. + $this->element('title', null, sprintf(_('%1$s unsubscribed from list %2$s by %3$s'), $cur->nickname, $this->peopletag->tag, $this->tagger->nickname)); diff --git a/classes/Profile_tag.php b/classes/Profile_tag.php index 00585280d3..9e475e83ec 100644 --- a/classes/Profile_tag.php +++ b/classes/Profile_tag.php @@ -167,10 +167,10 @@ class Profile_tag extends Memcached_DataObject $profile_list = Profile_list::ensureTag($tagger, $tag, $desc, $private); if ($profile_list->taggedCount() >= common_config('peopletag', 'maxpeople')) { - // TRANS: Client exception thrown trying to set one tag for more people than allowed. - throw new ClientException(sprintf(_('You already have %1$d or more people tagged %2$s, ' . + // TRANS: Client exception thrown when trying to add more people than allowed to a list. + throw new ClientException(sprintf(_('You already have %1$d or more people in list %2$s, ' . 'which is the maximum allowed number.' . - 'Try untagging others with the same tag first.'), + 'Try unlisting others first.'), common_config('peopletag', 'maxpeople'), $tag)); return false; } diff --git a/classes/Profile_tag_subscription.php b/classes/Profile_tag_subscription.php index c8b136da60..031405f531 100644 --- a/classes/Profile_tag_subscription.php +++ b/classes/Profile_tag_subscription.php @@ -50,8 +50,8 @@ class Profile_tag_subscription extends Memcached_DataObject if (!$result) { common_log_db_error($sub, 'INSERT', __FILE__); - // TRANS: Exception thrown when inserting a people tag subscription in the database fails. - throw new Exception(_('Adding people tag subscription failed.')); + // TRANS: Exception thrown when inserting a list subscription in the database fails. + throw new Exception(_('Adding list subscription failed.')); } $ptag = Profile_list::staticGet('id', $peopletag->id); @@ -77,8 +77,8 @@ class Profile_tag_subscription extends Memcached_DataObject if (!$result) { common_log_db_error($sub, 'DELETE', __FILE__); - // TRANS: Exception thrown when deleting a people tag subscription from the database fails. - throw new Exception(_('Removing people tag subscription failed.')); + // TRANS: Exception thrown when deleting a list subscription from the database fails. + throw new Exception(_('Removing list subscription failed.')); } $peopletag->subscriberCount(true); diff --git a/lib/atomlistnoticefeed.php b/lib/atomlistnoticefeed.php index 55ad9d228c..ee4f01cad4 100644 --- a/lib/atomlistnoticefeed.php +++ b/lib/atomlistnoticefeed.php @@ -62,14 +62,14 @@ class AtomListNoticeFeed extends AtomNoticeFeed $this->tagger = Profile::staticGet('id', $list->tagger); // TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. - $title = sprintf(_('Timeline for people tagged #%1$s by %2$s'), $list->tag, $this->tagger->nickname); + $title = sprintf(_('Timeline for people in list %1$s by %2$s'), $list->tag, $this->tagger->nickname); $this->setTitle($title); $sitename = common_config('site', 'name'); $subtitle = sprintf( // TRANS: Message is used as a subtitle in atom list notice feed. // TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. - _('Updates from %1$s\'s %2$s people tag on %3$s!'), + _('Updates from %1$s\'s list %2$s on %3$s!'), $this->tagger->nickname, $list->tag, $sitename diff --git a/lib/peopletageditform.php b/lib/peopletageditform.php index c9bbd576f8..3dd8dafedd 100644 --- a/lib/peopletageditform.php +++ b/lib/peopletageditform.php @@ -127,11 +127,11 @@ class PeopletagEditForm extends Form $this->out->elementStart('li'); $this->out->hidden('id', $id); - // TRANS: Field label for people tag. - $this->out->input('tag', _m('LABEL','Tag'), + // TRANS: Field label for list. + $this->out->input('tag', _m('LABEL','List'), ($this->out->arg('tag')) ? $this->out->arg('tag') : $tag, - // TRANS: Field title for people tag. - _('Change the tag (letters, numbers, -, ., and _ are allowed).')); + // TRANS: Field title for list. + _('Change the list (letters, numbers, -, ., and _ are allowed).')); $this->out->elementEnd('li'); $this->out->elementStart('li'); @@ -164,7 +164,7 @@ class PeopletagEditForm extends Form */ function formActions() { - // TRANS: Button text to save a people tag. + // TRANS: Button text to save a list. $this->out->submit('submit', _('Save')); $this->out->submit('form_action-yes', // TRANS: Button text to delete a list. @@ -178,11 +178,11 @@ class PeopletagEditForm extends Form function showProfileList() { $tagged = $this->peopletag->getTagged(); - // TRANS: Header in people tag edit form. + // TRANS: Header in list edit form. $this->out->element('h2', null, _('Add or remove people')); $this->out->elementStart('div', 'profile_search_wrap'); - // TRANS: Header in people tag edit form. + // TRANS: Header in list edit form. $this->out->element('h3', null, _m('HEADER','Search')); $search = new SearchProfileForm($this->out, $this->peopletag); $search->show(); diff --git a/lib/peopletaggroupnav.php b/lib/peopletaggroupnav.php index c247bdb8d8..3cfcb3cff3 100644 --- a/lib/peopletaggroupnav.php +++ b/lib/peopletaggroupnav.php @@ -138,7 +138,7 @@ class PeopletagGroupNav extends Widget // Edit $this->out->menuItem(common_local_url('editpeopletag', array('tagger' => $user->nickname, 'tag' => $tag->tag)), - // TRANS: Menu item in people tag navigation panel. + // TRANS: Menu item in list navigation panel. _m('MENU','Edit'), // TRANS: Menu item title in list navigation panel. // TRANS: %s is a list. diff --git a/lib/peopletaglist.php b/lib/peopletaglist.php index a776f07d5c..3ee1d34938 100644 --- a/lib/peopletaglist.php +++ b/lib/peopletaglist.php @@ -256,7 +256,7 @@ class PeopletagListItem extends Widget $this->out->elementStart('a', array('href' => common_local_url('peopletagsbyuser', array('nickname' => $this->profile->nickname, 'private' => 1)))); - // TRANS: Privacy mode text in people tag list item for private tags. + // TRANS: Privacy mode text in list list item for private list. $this->out->element('span', 'privacy_mode', _m('MODE','Private')); $this->out->elementEnd('a'); } diff --git a/lib/peopletagnoticestream.php b/lib/peopletagnoticestream.php index f90255b111..9477ca8ea6 100644 --- a/lib/peopletagnoticestream.php +++ b/lib/peopletagnoticestream.php @@ -3,7 +3,7 @@ * StatusNet - the distributed open-source microblogging tool * Copyright (C) 2011, StatusNet, Inc. * - * Stream of notices for a people tag + * Stream of notices for a list * * PHP version 5 * @@ -35,7 +35,7 @@ if (!defined('STATUSNET')) { } /** - * Stream of notices for a people tag + * Stream of notices for a list * * @category Stream * @package StatusNet @@ -59,7 +59,7 @@ class PeopletagNoticeStream extends ScopingNoticeStream } /** - * Stream of notices for a people tag + * Stream of notices for a list * * @category Stream * @package StatusNet diff --git a/lib/peopletags.php b/lib/peopletags.php index ec8c04241d..40f07c06b7 100644 --- a/lib/peopletags.php +++ b/lib/peopletags.php @@ -83,8 +83,8 @@ class PeopletagsWidget extends Widget function label() { - // TRANS: Label in people tags widget. - return _m('LABEL','Tags by you'); + // TRANS: Label in lists widget. + return _m('LABEL','Your lists'); } function showTags() @@ -131,8 +131,8 @@ class PeopletagsWidget extends Widget 'action' => common_local_url('tagprofile', array('id' => $this->tagged->id)))); $this->out->elementStart('fieldset'); - // TRANS: Fieldset legend in people tags widget. - $this->out->element('legend', null, _m('LEGEND','Edit tags')); + // TRANS: Fieldset legend in lists widget. + $this->out->element('legend', null, _m('LEGEND','Edit lists')); $this->out->hidden('token', common_session_token()); $this->out->hidden('id', $this->tagged->id); diff --git a/lib/peopletagsforusersection.php b/lib/peopletagsforusersection.php index e5cd3316c5..37f46b850d 100644 --- a/lib/peopletagsforusersection.php +++ b/lib/peopletagsforusersection.php @@ -2,7 +2,7 @@ /** * StatusNet, the distributed open-source microblogging tool * - * People tags a user has been tagged with + * Lists a user is in * * PHP version 5 * @@ -31,7 +31,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { } /** - * People tags a user has been tagged with + * List a user has is in * * @category Widget * @package StatusNet diff --git a/lib/subscribepeopletagform.php b/lib/subscribepeopletagform.php index 4cc3a8e90b..c570ff1cee 100644 --- a/lib/subscribepeopletagform.php +++ b/lib/subscribepeopletagform.php @@ -102,7 +102,7 @@ class SubscribePeopletagForm extends Form */ function formActions() { - // TRANS: Button text for subscribing to a people tag. + // TRANS: Button text for subscribing to a list. $this->out->submit('submit', _m('BUTTON', 'Subscribe')); } diff --git a/lib/togglepeopletag.php b/lib/togglepeopletag.php index bc9d136fe5..156ce30af5 100644 --- a/lib/togglepeopletag.php +++ b/lib/togglepeopletag.php @@ -186,8 +186,8 @@ class UntagButton extends Form function formLegend() { // TRANS: Form legend. - // TRANS: %1$s is a nickname, $2$s is a people tag. - $this->out->element('legend', null, sprintf(_('Untag %1$s as %2$s'), + // TRANS: %1$s is a nickname, $2$s is a list. + $this->out->element('legend', null, sprintf(_('Remove %1$s from list %2$s'), $this->profile->nickname, $this->peopletag->tag)); } @@ -263,9 +263,9 @@ class TagButton extends Form */ function formLegend() { - // TRANS: Legend on form to add a tag to a profile. - // TRANS: %1$s is a nickname, %2$s ia a people tag. - $this->out->element('legend', null, sprintf(_('Tag %1$s as %2$s'), + // TRANS: Legend on form to add a profile to a list. + // TRANS: %1$s is a nickname, %2$s is a list. + $this->out->element('legend', null, sprintf(_('Add %1$s to list %2$s'), $this->profile->nickname, $this->peopletag->tag)); } diff --git a/lib/unsubscribepeopletagform.php b/lib/unsubscribepeopletagform.php index 62343567f4..dac90af77e 100644 --- a/lib/unsubscribepeopletagform.php +++ b/lib/unsubscribepeopletagform.php @@ -102,7 +102,7 @@ class UnsubscribePeopletagForm extends Form */ function formActions() { - // TRANS: Button text for unsubscribing from a people tag. + // TRANS: Button text for unsubscribing from a list. $this->out->submit('submit', _m('BUTTON','Unsubscribe')); } } diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index fe1db3b81f..e807fbc7ba 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -885,8 +885,8 @@ class OStatusPlugin extends Plugin return true; } else { $oprofile->garbageCollect(); - // TRANS: Exception thrown when subscription of remote people tag fails. - throw new Exception(_m('Failed subscribing to remote people tag.')); + // TRANS: Exception thrown when subscription to remote list fails. + throw new Exception(_m('Failed subscribing to remote list.')); } } } @@ -922,7 +922,7 @@ class OStatusPlugin extends Plugin $act->object = $oprofile->asActivityObject(); $act->time = time(); - $act->title = _m('Unfollow people tag'); + $act->title = _m('Unfollow list'); $act->content = sprintf(_m('%1$s stopped following the list %2$s by %3$s.'), $sub->getBestName(), $oprofile->getBestName(), diff --git a/plugins/OStatus/actions/ostatusinit.php b/plugins/OStatus/actions/ostatusinit.php index 8dc68e4b01..ed886ada1b 100644 --- a/plugins/OStatus/actions/ostatusinit.php +++ b/plugins/OStatus/actions/ostatusinit.php @@ -104,9 +104,9 @@ class OStatusInitAction extends Action // TRANS: Button text to join a group. $submit = _m('BUTTON','Join'); } else if ($this->peopletag && $this->tagger) { - // TRANS: Form legend. %1$s is a people tag, %2$s is a tagger's name. - $header = sprintf(_m('Subscribe to people tagged %1$s by %2$s'), $this->peopletag, $this->tagger); - // TRANS: Button text to subscribe to a people tag. + // TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. + $header = sprintf(_m('Subscribe to list %1$s by %2$s'), $this->peopletag, $this->tagger); + // TRANS: Button text to subscribe to a list. $submit = _m('BUTTON','Subscribe'); // TRANS: Button text. } else { @@ -167,7 +167,7 @@ class OStatusInitAction extends Action $this->connectWebfinger($this->profile); } else { // TRANS: Client error. - $this->clientError(_m("Must provide a remote profile.")); + $this->clientError(_m('Must provide a remote profile.')); } } @@ -218,7 +218,7 @@ class OStatusInitAction extends Action return common_local_url('userbyid', array('id' => $user->id)); } else { // TRANS: Client error. - $this->clientError("No such user."); + $this->clientError(_m('No such user.')); } } else if ($this->group) { $group = Local_group::staticGet('nickname', $this->group); @@ -226,12 +226,12 @@ class OStatusInitAction extends Action return common_local_url('groupbyid', array('id' => $group->group_id)); } else { // TRANS: Client error. - $this->clientError("No such group."); + $this->clientError(_m('No such group.')); } } else if ($this->peopletag && $this->tagger) { $user = User::staticGet('nickname', $this->tagger); if (empty($user)) { - $this->clientError("No such user."); + $this->clientError(_m('No such user.')); } $peopletag = Profile_list::getByTaggerAndTag($user->id, $this->peopletag); @@ -239,10 +239,10 @@ class OStatusInitAction extends Action return common_local_url('profiletagbyid', array('tagger_id' => $user->id, 'id' => $peopletag->id)); } - $this->clientError("No such people tag."); + $this->clientError(_m('No such list.')); } else { // TRANS: Client error. - $this->clientError("No local user or group nickname provided."); + $this->clientError(_m('No local user or group nickname provided.')); } } diff --git a/plugins/OStatus/actions/ostatuspeopletag.php b/plugins/OStatus/actions/ostatuspeopletag.php index d4f64553cf..014b6cabbd 100644 --- a/plugins/OStatus/actions/ostatuspeopletag.php +++ b/plugins/OStatus/actions/ostatuspeopletag.php @@ -70,9 +70,9 @@ class OStatusPeopletagAction extends OStatusSubAction $this->elementStart('ul', 'form_data'); $this->elementStart('li'); $this->input('profile', - _m('Subscribe to people tag'), + _m('Subscribe to list'), $this->profile_uri, - _m("Address of the OStatus people tag, like http://example.net/user/all/tag")); + _m("Address of the OStatus list, like http://example.net/user/all/tag")); $this->elementEnd('li'); $this->elementEnd('ul'); @@ -95,7 +95,7 @@ class OStatusPeopletagAction extends OStatusSubAction $cur = common_current_user(); if ($ptag->hasSubscriber($cur->id)) { $this->element('div', array('class' => 'error'), - _m('You are already subscribed to this people tag.')); + _m('You are already subscribed to this list.')); $ok = false; } else { $ok = true; @@ -157,8 +157,8 @@ class OStatusPeopletagAction extends OStatusSubAction function title() { - // TRANS: Page title for OStatus remote people tag subscription form - return _m('Confirm subscription to remote people tag'); + // TRANS: Page title for OStatus remote list subscription form + return _m('Confirm subscription to remote list'); } /** diff --git a/plugins/OStatus/actions/ostatustag.php b/plugins/OStatus/actions/ostatustag.php index eaf9c167e7..cde1d67562 100644 --- a/plugins/OStatus/actions/ostatustag.php +++ b/plugins/OStatus/actions/ostatustag.php @@ -112,6 +112,6 @@ class OStatusTagAction extends OStatusInitAction function title() { - return _m('OStatus people tag'); + return _m('OStatus list'); } } diff --git a/plugins/OStatus/actions/pushhub.php b/plugins/OStatus/actions/pushhub.php index b2a97dbc6c..e9dca7ab9d 100644 --- a/plugins/OStatus/actions/pushhub.php +++ b/plugins/OStatus/actions/pushhub.php @@ -183,7 +183,7 @@ class PushHubAction extends Action $user = User::staticGet('id', $user); if (!$list || !$user || $list->tagger != $user->id) { // TRANS: Client exception. %s is a feed URL. - throw new ClientException(sprintf(_m('Invalid hub.topic %s; people tag does not exist.'),$feed)); + throw new ClientException(sprintf(_m('Invalid hub.topic %s; list does not exist.'),$feed)); } else { return true; } diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 83a6d73f94..329228d8c9 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -1209,7 +1209,7 @@ class Ostatus_profile extends Managed_DataObject if ($object->link && common_valid_http_url($object->link)) { return $object->link; } - throw new ServerException("No author ID URI found."); + throw new ServerException(_m('No author ID URI found.')); } /** @@ -1234,7 +1234,7 @@ class Ostatus_profile extends Managed_DataObject if (!$homeuri) { common_log(LOG_DEBUG, __METHOD__ . " empty actor profile URI: " . var_export($activity, true)); - throw new Exception('No profile URI.'); + throw new Exception(_m('No profile URI.')); } $user = User::staticGet('uri', $homeuri); @@ -1252,7 +1252,7 @@ class Ostatus_profile extends Managed_DataObject if ($ptag) { $local_user = User::staticGet('id', $ptag->tagger); if (!empty($local_user)) { - throw new Exception('Local people tag cannot be referenced as remote.'); + throw new Exception(_m('Local list cannot be referenced as remote.')); } } @@ -1326,7 +1326,7 @@ class Ostatus_profile extends Managed_DataObject $oprofile->peopletag_id = $ptag->insert(); if (!$oprofile->peopletag_id) { - throw new ServerException('Cannot save local people tag.'); + throw new ServerException(_m('Cannot save local list.')); } } @@ -1772,7 +1772,7 @@ class Ostatus_profile extends Managed_DataObject if (!$result) { common_log_db_error($oprofile, 'INSERT', __FILE__); // TRANS: Exception. %s is a webfinger address. - throw new Exception(sprintf(_m('Could not save ostatus_profile for "%s".'),$addr)); + throw new Exception(sprintf(_m('Could not save OStatus profile for "%s".'),$addr)); } self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), $oprofile->uri); From 5f3dbc3e98fd15ca81fd487532a0efaa95043988 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 17 Apr 2011 20:30:47 +0200 Subject: [PATCH 2/3] Localisation updates http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 383 +++-- locale/bg/LC_MESSAGES/statusnet.po | 376 +++-- locale/br/LC_MESSAGES/statusnet.po | 383 +++-- locale/ca/LC_MESSAGES/statusnet.po | 850 +++++------ locale/cs/LC_MESSAGES/statusnet.po | 387 +++-- locale/de/LC_MESSAGES/statusnet.po | 385 +++-- locale/en_GB/LC_MESSAGES/statusnet.po | 385 +++-- locale/eo/LC_MESSAGES/statusnet.po | 385 +++-- locale/es/LC_MESSAGES/statusnet.po | 385 +++-- locale/fa/LC_MESSAGES/statusnet.po | 385 +++-- locale/fi/LC_MESSAGES/statusnet.po | 385 +++-- locale/fr/LC_MESSAGES/statusnet.po | 386 +++-- locale/fur/LC_MESSAGES/statusnet.po | 541 ++++--- locale/gl/LC_MESSAGES/statusnet.po | 385 +++-- locale/hsb/LC_MESSAGES/statusnet.po | 374 +++-- locale/ia/LC_MESSAGES/statusnet.po | 517 ++++--- locale/it/LC_MESSAGES/statusnet.po | 385 +++-- locale/ja/LC_MESSAGES/statusnet.po | 383 +++-- locale/ka/LC_MESSAGES/statusnet.po | 385 +++-- locale/ko/LC_MESSAGES/statusnet.po | 428 +++--- locale/mk/LC_MESSAGES/statusnet.po | 671 +++++---- locale/ml/LC_MESSAGES/statusnet.po | 374 +++-- locale/nb/LC_MESSAGES/statusnet.po | 385 +++-- locale/nl/LC_MESSAGES/statusnet.po | 685 +++++---- locale/pl/LC_MESSAGES/statusnet.po | 385 +++-- locale/pt/LC_MESSAGES/statusnet.po | 385 +++-- locale/pt_BR/LC_MESSAGES/statusnet.po | 385 +++-- locale/ru/LC_MESSAGES/statusnet.po | 385 +++-- locale/statusnet.pot | 275 ++-- locale/sv/LC_MESSAGES/statusnet.po | 747 +++++----- locale/te/LC_MESSAGES/statusnet.po | 371 +++-- locale/tl/LC_MESSAGES/statusnet.po | 1301 ++++++++++------- locale/uk/LC_MESSAGES/statusnet.po | 385 +++-- locale/zh_CN/LC_MESSAGES/statusnet.po | 385 +++-- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/ast/LC_MESSAGES/APC.po | 8 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 8 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 8 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ast/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ca/LC_MESSAGES/AccountManager.po | 6 +- .../locale/de/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 6 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 6 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 6 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 6 +- .../locale/ru/LC_MESSAGES/AccountManager.po | 6 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 6 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 6 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ca/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 6 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 6 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 6 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 6 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 6 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 6 +- plugins/ApiLogger/locale/ApiLogger.pot | 2 +- .../locale/ast/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/ia/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/mk/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/nl/LC_MESSAGES/ApiLogger.po | 8 +- .../locale/tl/LC_MESSAGES/ApiLogger.po | 26 + plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 6 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 6 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/ast/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 8 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 8 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 6 +- .../locale/tl/LC_MESSAGES/Awesomeness.po | 29 + .../locale/uk/LC_MESSAGES/Awesomeness.po | 6 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 15 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 6 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 20 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 6 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ca/LC_MESSAGES/Blacklist.po | 13 +- .../locale/de/LC_MESSAGES/Blacklist.po | 8 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 8 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 8 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 8 +- .../locale/sv/LC_MESSAGES/Blacklist.po | 8 +- .../locale/tl/LC_MESSAGES/Blacklist.po | 10 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 8 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/sv/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 8 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 8 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 8 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 6 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 6 +- plugins/Bookmark/locale/Bookmark.pot | 2 +- .../locale/ca/LC_MESSAGES/Bookmark.po | 24 +- .../locale/ia/LC_MESSAGES/Bookmark.po | 21 +- .../locale/mk/LC_MESSAGES/Bookmark.po | 25 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 25 +- .../locale/tl/LC_MESSAGES/Bookmark.po | 49 +- .../locale/uk/LC_MESSAGES/Bookmark.po | 21 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 6 +- .../locale/br/LC_MESSAGES/CacheLog.po | 6 +- .../locale/es/LC_MESSAGES/CacheLog.po | 6 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 6 +- .../locale/he/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 6 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 6 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 6 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 6 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 6 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 6 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 6 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 6 +- .../br/LC_MESSAGES/CasAuthentication.po | 6 +- .../de/LC_MESSAGES/CasAuthentication.po | 6 +- .../es/LC_MESSAGES/CasAuthentication.po | 6 +- .../fr/LC_MESSAGES/CasAuthentication.po | 6 +- .../ia/LC_MESSAGES/CasAuthentication.po | 6 +- .../mk/LC_MESSAGES/CasAuthentication.po | 6 +- .../nl/LC_MESSAGES/CasAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 6 +- .../ru/LC_MESSAGES/CasAuthentication.po | 6 +- .../tl/LC_MESSAGES/CasAuthentication.po | 9 +- .../uk/LC_MESSAGES/CasAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 6 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 6 +- .../de/LC_MESSAGES/ClientSideShorten.po | 6 +- .../es/LC_MESSAGES/ClientSideShorten.po | 6 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 6 +- .../he/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 6 +- .../id/LC_MESSAGES/ClientSideShorten.po | 6 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 6 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 6 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 6 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 6 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 6 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 6 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 6 +- .../locale/DirectionDetector.pot | 2 +- .../LC_MESSAGES/DirectionDetector.po | 6 +- .../br/LC_MESSAGES/DirectionDetector.po | 6 +- .../de/LC_MESSAGES/DirectionDetector.po | 6 +- .../es/LC_MESSAGES/DirectionDetector.po | 6 +- .../fi/LC_MESSAGES/DirectionDetector.po | 6 +- .../fr/LC_MESSAGES/DirectionDetector.po | 6 +- .../he/LC_MESSAGES/DirectionDetector.po | 6 +- .../ia/LC_MESSAGES/DirectionDetector.po | 6 +- .../id/LC_MESSAGES/DirectionDetector.po | 6 +- .../ja/LC_MESSAGES/DirectionDetector.po | 6 +- .../lb/LC_MESSAGES/DirectionDetector.po | 6 +- .../mk/LC_MESSAGES/DirectionDetector.po | 6 +- .../nb/LC_MESSAGES/DirectionDetector.po | 6 +- .../nl/LC_MESSAGES/DirectionDetector.po | 6 +- .../pt/LC_MESSAGES/DirectionDetector.po | 6 +- .../ru/LC_MESSAGES/DirectionDetector.po | 6 +- .../tl/LC_MESSAGES/DirectionDetector.po | 6 +- .../uk/LC_MESSAGES/DirectionDetector.po | 6 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 6 +- plugins/Directory/locale/Directory.pot | 2 +- .../locale/ca/LC_MESSAGES/Directory.po | 36 +- .../locale/ia/LC_MESSAGES/Directory.po | 8 +- .../locale/mk/LC_MESSAGES/Directory.po | 46 +- .../locale/nl/LC_MESSAGES/Directory.po | 39 +- .../locale/tl/LC_MESSAGES/Directory.po | 49 +- .../locale/uk/LC_MESSAGES/Directory.po | 8 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 6 +- .../locale/br/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ca/LC_MESSAGES/DiskCache.po | 6 +- .../locale/de/LC_MESSAGES/DiskCache.po | 6 +- .../locale/es/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 6 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 6 +- .../locale/he/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 6 +- .../locale/id/LC_MESSAGES/DiskCache.po | 6 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 6 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 6 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 6 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 6 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 6 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 6 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 6 +- .../locale/DomainWhitelist.pot | 2 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 8 +- .../locale/te/LC_MESSAGES/DomainWhitelist.po | 26 + .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 26 + plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 6 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 6 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 6 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 6 +- .../br/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 6 +- .../de/LC_MESSAGES/EmailAuthentication.po | 6 +- .../es/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 6 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 6 +- .../he/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 6 +- .../id/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 6 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 6 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 6 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 6 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 6 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 6 +- plugins/EmailSummary/locale/EmailSummary.pot | 2 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 9 +- .../locale/ia/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 6 +- .../locale/tl/LC_MESSAGES/EmailSummary.po | 9 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 6 +- plugins/Event/locale/Event.pot | 2 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 6 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 6 +- .../locale/ExtendedProfile.pot | 2 +- .../locale/br/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/te/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 8 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 8 +- .../FacebookBridge/locale/FacebookBridge.pot | 2 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 22 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 8 +- .../locale/tl/LC_MESSAGES/FacebookBridge.po | 29 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 8 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 8 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 6 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 6 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 6 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/tl/LC_MESSAGES/FollowEveryone.po | 6 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 6 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 6 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 6 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/sv/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 8 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 8 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/ia/LC_MESSAGES/Geonames.po | 8 +- .../locale/mk/LC_MESSAGES/Geonames.po | 8 +- .../locale/nl/LC_MESSAGES/Geonames.po | 8 +- .../locale/sv/LC_MESSAGES/Geonames.po | 8 +- .../locale/tl/LC_MESSAGES/Geonames.po | 8 +- .../locale/uk/LC_MESSAGES/Geonames.po | 8 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 6 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 6 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 46 +- .../locale/de/LC_MESSAGES/Gravatar.po | 46 +- .../locale/es/LC_MESSAGES/Gravatar.po | 46 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 47 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 42 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 45 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 44 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 43 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 43 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 46 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 44 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 43 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/br/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 6 +- .../locale/GroupPrivateMessage.pot | 2 +- .../ia/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 6 +- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 6 +- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 8 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 8 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/tl/LC_MESSAGES/InProcessCache.po | 6 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 6 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 6 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 6 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 6 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 6 +- plugins/Irc/locale/Irc.pot | 2 +- plugins/Irc/locale/fi/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 6 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 6 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 6 +- .../es/LC_MESSAGES/LdapAuthentication.po | 6 +- .../fi/LC_MESSAGES/LdapAuthentication.po | 6 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 6 +- .../he/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 6 +- .../id/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ja/LC_MESSAGES/LdapAuthentication.po | 6 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../nb/LC_MESSAGES/LdapAuthentication.po | 6 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../pt/LC_MESSAGES/LdapAuthentication.po | 6 +- .../pt_BR/LC_MESSAGES/LdapAuthentication.po | 6 +- .../ru/LC_MESSAGES/LdapAuthentication.po | 6 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 6 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 6 +- .../zh_CN/LC_MESSAGES/LdapAuthentication.po | 6 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 6 +- .../es/LC_MESSAGES/LdapAuthorization.po | 6 +- .../fr/LC_MESSAGES/LdapAuthorization.po | 6 +- .../he/LC_MESSAGES/LdapAuthorization.po | 6 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 6 +- .../id/LC_MESSAGES/LdapAuthorization.po | 6 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 6 +- .../nb/LC_MESSAGES/LdapAuthorization.po | 6 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../pt/LC_MESSAGES/LdapAuthorization.po | 6 +- .../pt_BR/LC_MESSAGES/LdapAuthorization.po | 6 +- .../ru/LC_MESSAGES/LdapAuthorization.po | 6 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 6 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 6 +- .../zh_CN/LC_MESSAGES/LdapAuthorization.po | 6 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 6 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 6 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/he/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/pt/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/ru/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/tl/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 8 +- .../locale/zh_CN/LC_MESSAGES/LinkPreview.po | 8 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/de/LC_MESSAGES/Linkback.po | 6 +- .../locale/es/LC_MESSAGES/Linkback.po | 6 +- .../locale/fi/LC_MESSAGES/Linkback.po | 6 +- .../locale/fr/LC_MESSAGES/Linkback.po | 6 +- .../locale/he/LC_MESSAGES/Linkback.po | 6 +- .../locale/ia/LC_MESSAGES/Linkback.po | 6 +- .../locale/id/LC_MESSAGES/Linkback.po | 6 +- .../locale/mk/LC_MESSAGES/Linkback.po | 6 +- .../locale/nb/LC_MESSAGES/Linkback.po | 6 +- .../locale/nl/LC_MESSAGES/Linkback.po | 6 +- .../locale/pt/LC_MESSAGES/Linkback.po | 6 +- .../locale/ru/LC_MESSAGES/Linkback.po | 6 +- .../locale/tl/LC_MESSAGES/Linkback.po | 6 +- .../locale/uk/LC_MESSAGES/Linkback.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 6 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 6 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 6 +- .../locale/he/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 6 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 6 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 6 +- .../locale/tl/LC_MESSAGES/LogFilter.po | 6 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 6 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 6 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/sv/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 8 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 8 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 6 +- .../locale/es/LC_MESSAGES/Memcache.po | 6 +- .../locale/fi/LC_MESSAGES/Memcache.po | 6 +- .../locale/fr/LC_MESSAGES/Memcache.po | 6 +- .../locale/he/LC_MESSAGES/Memcache.po | 6 +- .../locale/ia/LC_MESSAGES/Memcache.po | 6 +- .../locale/mk/LC_MESSAGES/Memcache.po | 6 +- .../locale/nb/LC_MESSAGES/Memcache.po | 6 +- .../locale/nl/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt/LC_MESSAGES/Memcache.po | 6 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 6 +- .../locale/ru/LC_MESSAGES/Memcache.po | 6 +- .../locale/tl/LC_MESSAGES/Memcache.po | 6 +- .../locale/uk/LC_MESSAGES/Memcache.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 6 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 6 +- .../locale/es/LC_MESSAGES/Memcached.po | 6 +- .../locale/fi/LC_MESSAGES/Memcached.po | 6 +- .../locale/fr/LC_MESSAGES/Memcached.po | 6 +- .../locale/he/LC_MESSAGES/Memcached.po | 6 +- .../locale/ia/LC_MESSAGES/Memcached.po | 6 +- .../locale/id/LC_MESSAGES/Memcached.po | 6 +- .../locale/ja/LC_MESSAGES/Memcached.po | 6 +- .../locale/mk/LC_MESSAGES/Memcached.po | 6 +- .../locale/nb/LC_MESSAGES/Memcached.po | 6 +- .../locale/nl/LC_MESSAGES/Memcached.po | 6 +- .../locale/pt/LC_MESSAGES/Memcached.po | 6 +- .../locale/ru/LC_MESSAGES/Memcached.po | 6 +- .../locale/tl/LC_MESSAGES/Memcached.po | 6 +- .../locale/uk/LC_MESSAGES/Memcached.po | 6 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 6 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/id/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 6 +- .../Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po | 6 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 6 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 6 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/ar/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/br/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/gl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ps/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/ta/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/te/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 8 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 8 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 6 +- .../locale/es/LC_MESSAGES/ModHelper.po | 6 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 6 +- .../locale/he/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 6 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 6 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 6 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 6 +- .../locale/tl/LC_MESSAGES/ModHelper.po | 6 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 6 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 6 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 6 +- plugins/Mollom/locale/Mollom.pot | 2 +- .../Mollom/locale/ca/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/ia/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/tl/LC_MESSAGES/Mollom.po | 6 +- .../Mollom/locale/uk/LC_MESSAGES/Mollom.po | 6 +- plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/br/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/el/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/fr/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/pt/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 6 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 6 +- .../NewMenu/locale/ar/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/br/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/de/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/ia/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/mk/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/nl/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/te/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/tl/LC_MESSAGES/NewMenu.po | 4 +- .../NewMenu/locale/uk/LC_MESSAGES/NewMenu.po | 4 +- .../locale/zh_CN/LC_MESSAGES/NewMenu.po | 4 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/pl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/pt/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/te/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 6 +- .../locale/zh_CN/LC_MESSAGES/NoticeTitle.po | 6 +- plugins/OStatus/locale/OStatus.pot | 57 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 85 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 87 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 85 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 131 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 138 +- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 135 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 88 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 6 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/br/LC_MESSAGES/OpenID.po | 8 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 8 +- .../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 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po | 6 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 6 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 6 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 6 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 6 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 6 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 6 +- .../locale/es/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 6 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 6 +- .../locale/he/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 6 +- .../locale/id/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 6 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 6 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 6 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 6 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 6 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 6 +- .../locale/PoweredByStatusNet.pot | 2 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 8 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 8 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 6 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 6 +- plugins/QnA/locale/QnA.pot | 2 +- plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 6 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 6 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 6 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 6 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 6 +- .../locale/ar/LC_MESSAGES/Realtime.po | 6 +- .../locale/br/LC_MESSAGES/Realtime.po | 6 +- .../locale/ca/LC_MESSAGES/Realtime.po | 6 +- .../locale/de/LC_MESSAGES/Realtime.po | 6 +- .../locale/fr/LC_MESSAGES/Realtime.po | 6 +- .../locale/ia/LC_MESSAGES/Realtime.po | 6 +- .../locale/mk/LC_MESSAGES/Realtime.po | 6 +- .../locale/ne/LC_MESSAGES/Realtime.po | 6 +- .../locale/nl/LC_MESSAGES/Realtime.po | 6 +- .../locale/tl/LC_MESSAGES/Realtime.po | 6 +- .../locale/tr/LC_MESSAGES/Realtime.po | 6 +- .../locale/uk/LC_MESSAGES/Realtime.po | 6 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/fur/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/pt/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/sv/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 8 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 6 +- .../locale/RequireValidatedEmail.pot | 2 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 6 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- .../ReverseUsernameAuthentication.po | 6 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/tl/LC_MESSAGES/SQLProfile.po | 6 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 6 +- plugins/SQLStats/locale/SQLStats.pot | 2 +- .../locale/ia/LC_MESSAGES/SQLStats.po | 6 +- .../locale/mk/LC_MESSAGES/SQLStats.po | 6 +- .../locale/nl/LC_MESSAGES/SQLStats.po | 6 +- .../locale/tl/LC_MESSAGES/SQLStats.po | 6 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 6 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 6 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- .../locale/ia/LC_MESSAGES/SearchSub.po | 11 +- .../locale/mk/LC_MESSAGES/SearchSub.po | 11 +- .../locale/nl/LC_MESSAGES/SearchSub.po | 11 +- .../locale/tl/LC_MESSAGES/SearchSub.po | 11 +- .../locale/uk/LC_MESSAGES/SearchSub.po | 11 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 6 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 6 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 6 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 6 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 6 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 6 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 6 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 6 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 6 +- .../locale/StrictTransportSecurity.pot | 2 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../ru/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 6 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 6 +- plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/de/LC_MESSAGES/SubMirror.po | 6 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 6 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 6 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 6 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 6 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 6 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 6 +- .../locale/SubscriptionThrottle.pot | 2 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 6 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 6 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 6 +- .../locale/es/LC_MESSAGES/TabFocus.po | 6 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 6 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/he/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 6 +- .../locale/id/LC_MESSAGES/TabFocus.po | 6 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 6 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 6 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 6 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 6 +- plugins/TagSub/locale/TagSub.pot | 2 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 11 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 11 +- .../TagSub/locale/ms/LC_MESSAGES/TagSub.po | 11 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 11 +- .../TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po | 11 +- .../TagSub/locale/te/LC_MESSAGES/TagSub.po | 11 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 11 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 11 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/de/LC_MESSAGES/TightUrl.po | 6 +- .../locale/es/LC_MESSAGES/TightUrl.po | 6 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 6 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/he/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 6 +- .../locale/id/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 6 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 6 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 6 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 6 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 6 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 6 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 6 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 6 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 6 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 6 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- .../locale/br/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 12 +- .../locale/fa/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 6 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 6 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 6 +- .../locale/de/LC_MESSAGES/UserFlag.po | 6 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 6 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 6 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 6 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 6 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 6 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 6 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 6 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 6 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/br/LC_MESSAGES/UserLimit.po | 6 +- .../locale/de/LC_MESSAGES/UserLimit.po | 6 +- .../locale/es/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 6 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 6 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/he/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 6 +- .../locale/id/LC_MESSAGES/UserLimit.po | 6 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 6 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 6 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 6 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 6 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 6 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 6 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 6 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 6 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 6 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 6 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 6 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 6 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 6 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 6 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/ast/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 8 +- .../XCache/locale/pt_BR/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/Xmpp/locale/Xmpp.pot | 2 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po | 6 +- plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po | 6 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 8 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/gl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 8 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ms/LC_MESSAGES/YammerImport.po | 8 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/ru/LC_MESSAGES/YammerImport.po | 8 +- .../locale/tl/LC_MESSAGES/YammerImport.po | 8 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 8 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 8 +- 1272 files changed, 12061 insertions(+), 12731 deletions(-) create mode 100644 plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po create mode 100644 plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po create mode 100644 plugins/DomainWhitelist/locale/te/LC_MESSAGES/DomainWhitelist.po create mode 100644 plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index ac98b4db28..8880122962 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -12,19 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:00+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:11+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -116,7 +116,7 @@ msgstr "حفظ إعدادت الوصول" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -153,9 +153,12 @@ msgstr "لست والجًا." msgid "No such profile." msgstr "لا ملف كهذا." -#. TRANS: Client error displayed trying to reference a non-existing people tag. -msgid "No such people tag." -msgstr "لا وسم أشخاص كهذا." +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +#, fuzzy +msgid "No such list." +msgstr "لا وسم كهذا." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. #, fuzzy @@ -176,7 +179,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "مُشترك" @@ -612,7 +615,7 @@ msgstr "الاسم الكامل طويل جدًا (الحد الأقصى 255 ح #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2245,7 +2248,7 @@ msgid "Invalid alias: \"%s\"" msgstr "كنية غير صالحة: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "حُفظت الخيارات." @@ -2268,11 +2271,6 @@ msgstr "ليس وسم أشخاص صالح: %s." msgid "No tagger or ID." msgstr "لا اسم مستعار." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "لا وسم كهذا." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "ليس مُستخدمًا محليًا." @@ -4050,26 +4048,26 @@ msgstr "" msgid "People search" msgstr "بحث في الأشخاص" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "المسار الزمني العام، صفحة %d" +msgid "Public list %s" +msgstr "سحابة الوسوم العمومية" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "الردود على %1$s، الصفحة %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** مجموعة مستخدمين على %%%%site.name%%%%، خدمة [التدوين المُصغّر](http://" "en.wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [ستاتس نت]" @@ -4188,10 +4186,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" @@ -4211,23 +4211,23 @@ msgstr "" "en.wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [ستاتس نت]" "(http://status.net/). يتشارك أعضاؤها رسائل قصيرة عن حياتهم واهتماماتهم. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "الردود على %1$s، الصفحة %2$d" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4604,46 +4604,46 @@ msgstr "" "هنا %%site.name%%، خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-" "blogging) المبنية على البرنامج الحر [ستاتس نت](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "سحابة الوسوم العمومية" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "هذه هي أكثر الوسوم شهرة على %s " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "كن أول من يُرسل!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "لمَ لا [تسجل حسابًا](%%%%action.register%%%%) لتنبه %s أو ترسل إليه إشعارًا؟" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "سحابة الوسوم العمومية" +msgid "List cloud" +msgstr "لم يُعثرعلى المستخدم." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -4987,7 +4987,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5017,7 +5017,21 @@ msgstr "تعذّر إدراج الرسالة." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5198,10 +5212,10 @@ msgstr "لا يمكنك إسكات المستخدمين على هذا الموق msgid "User is already sandboxed." msgstr "المستخدم مسكت من قبل." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "ليس وسم أشخاص صالح: %s." #. TRANS: Page title for page showing self tags. @@ -5495,19 +5509,19 @@ msgid "Notice deleted." msgstr "حُذف الإشعار." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "المستخدمون الذين وسموا أنفسهم ب%1$s - الصفحة %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "المستخدمون الذين وسموا أنفسهم ب%1$s - الصفحة %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" @@ -5544,11 +5558,11 @@ msgid "" "yet." msgstr "هذا هو السجل الزمني ل%s وأصدقائه لكن لم يرسل أحد شيئًا إلى الآن." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5562,7 +5576,7 @@ msgstr "" msgid "Listed" msgstr "الرخصة" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6073,7 +6087,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "يجب أن تكون والجًا لتنشئ مجموعة." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6081,16 +6095,16 @@ msgstr "يجب أن تكون والجًا لتنشئ مجموعة." msgid "No ID given." msgstr "لا مدخل هوية." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "مشتركو %1$s, الصفحة %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6223,42 +6237,43 @@ msgstr "" msgid "You cannot tag this user." msgstr "لا يمكنك إرسال رسائل إلى هذا المستخدم." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "ملف المستخدم الشخصي" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. #, fuzzy, php-format -msgid "Tag %s" -msgstr "الوسوم" +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "الحدود" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "خطأ أجاكس" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "ملف المستخدم الشخصي" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "اوسم المستخدم" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "الحدود" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "الوسوم" +msgid "Lists" +msgstr "الحدود" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." @@ -6269,14 +6284,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "الوسوم" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "حُفظت كلمة السر." #. TRANS: Page notice. #, fuzzy -msgid "Use this form to add tags to your subscribers or subscriptions." +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "استخدم هذا النموذج لتعدل تطبيقك." #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6299,10 +6314,10 @@ msgstr "المستخدم ليس مُسكتًا." msgid "Unsubscribed" msgstr "غير مشترك" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "مشتركو %1$s, الصفحة %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -6963,21 +6978,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "تعذّر حفظ الاشتراك." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "تعذّر حفظ الاشتراك." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7589,7 +7604,7 @@ msgid "Cancel" msgstr "ألغِ" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "احفظ" @@ -7637,14 +7652,14 @@ msgid "Do not use this method!" msgstr "لا تحذف هذا الإشعار" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "الردود على %1$s، الصفحة %2$d" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "مستجدات %1$s على %2$s!" #. TRANS: Title. @@ -9288,15 +9303,15 @@ msgstr "تعذّر إدراج اشتراك جديد." msgid "No oEmbed API endpoint available." msgstr "المراسلة الفورية غير متوفرة." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "الوسم" +msgid "List" +msgstr "وصلات" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." @@ -9322,11 +9337,11 @@ msgstr[5] "صِف المجموعة أو الموضوع" msgid "Delete this list." msgstr "احذف هذا المستخدم." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9363,7 +9378,7 @@ msgstr "المشتركون" msgid "Subscribers to %1$s list by %2$s." msgstr "الردود على %1$s، الصفحة %2$d" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9389,7 +9404,7 @@ msgstr "عدّل إعدادات الملف الشخصي." msgid "Edit" msgstr "عدّل" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9402,48 +9417,57 @@ msgid "List Subscriptions" msgstr "الاشتراكات" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "الأشخاص المشتركون ب%s" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "الإشعارات الموسومة ب%s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "الإشعارات الموسومة ب%s" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s و %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "إشعارات محبوبة" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "عدّل" +msgid "Edit lists" +msgstr "ليس وسم أشخاص صالح: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "الوسوم" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9456,11 +9480,12 @@ msgstr "إشعارات محبوبة" msgid "Listed: %1$d Subscribers: %2$d" msgstr "مشتركو %1$s, الصفحة %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "لم يُعثرعلى المستخدم." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10093,16 +10118,16 @@ msgid "Choose a field to search." msgstr "اختر حقلا للبحث." #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s و %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s و %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10164,7 +10189,7 @@ msgid "Unsubscribe from this user" msgstr "ألغِ الاشتراك بهذا المستخدم" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "ألغِ الاشتراك" @@ -10267,88 +10292,46 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "استخدم هذا النموذج لتعديل المجموعة." +#~ msgid "No such people tag." +#~ msgstr "لا وسم أشخاص كهذا." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "تعذر تحديث المجموعة." +#~ msgid "Public people tag %s" +#~ msgstr "المسار الزمني العام، صفحة %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "تكرارات %s" +#~ msgid "Public people tag cloud" +#~ msgstr "سحابة الوسوم العمومية" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "الردود على %1$s، الصفحة %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "هذه هي أكثر الوسوم شهرة على %s " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "تكرارات %s" +#~ msgid "People tag cloud" +#~ msgstr "سحابة الوسوم العمومية" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "الردود على %1$s، الصفحة %2$d" +#~ msgid "Tag %s" +#~ msgstr "الوسوم" + +#~ msgid "Tag user" +#~ msgstr "اوسم المستخدم" #, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "مشكلة أثناء حفظ الإشعار." - -#~ msgid "Groups with most members" -#~ msgstr "المجموعات الأكثر أعضاءً" - -#~ msgid "Groups with most posts" -#~ msgstr "المجموعات الأكثر مرسلات" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "صِف المجموعة أو الموضوع" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "احذف هذه المجموعة." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "أشخاص" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "الوسم" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "عدّل إعدادات الملف الشخصي." +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "عدّل" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "الأشخاص الذين اشترك بهم %s" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s و %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "جميع الاشتراكات" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "أشخاص" - -#~ msgid "User" -#~ msgstr "المستخدم" - -#~ msgid "Tags in %s's notices" -#~ msgstr "وسوم في إشعارات %s" - -#~ msgid "All subscriptions" -#~ msgstr "جميع الاشتراكات" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "أشخاص" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "الأشخاص المشتركون ب%s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 8f4eea0b48..1bd7161270 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:13+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -114,7 +114,7 @@ msgstr "Запазване настройките за достъп" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -151,9 +151,11 @@ msgstr "Не сте влезли в системата." msgid "No such profile." msgstr "Няма такъв профил." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Няма такъв етикет." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -175,7 +177,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. #, fuzzy msgid "Subscribed" @@ -609,7 +611,7 @@ msgstr "Пълното име е твърде дълго (макс. 255 знак #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2265,7 +2267,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Неправилен псевдоним: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Настройките са запазени." @@ -2288,11 +2290,6 @@ msgstr "Неправилен адрес на е-поща." msgid "No tagger or ID." msgstr "Няма псевдоним." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Няма такъв етикет." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Не е локален потребител." @@ -4133,26 +4130,26 @@ msgstr "" msgid "People search" msgstr "Търсене на хора" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" +msgid "Public list %s" msgstr "Общ поток, страница %d" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Отговори до %1$s в %2$s!" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" #. TRANS: Client error displayed when a tagger is expected but not provided. @@ -4264,10 +4261,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Бележки с етикет %s" @@ -4284,23 +4283,23 @@ msgid "" "tag's timeline." msgstr "" -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Отговори до %1$s в %2$s!" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Бележки с етикет %s" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4666,44 +4665,44 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Общ поток, страница %d" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Това са хората, които четат бележките на %s." -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. -msgid "Be the first to tag someone!" +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +msgid "Be the first to list someone!" msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Общ поток, страница %d" +msgid "List cloud" +msgstr "Не е открит методът в API." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5079,7 +5078,7 @@ msgstr "Адрес на профила ви в друга, съвместима #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5111,7 +5110,21 @@ msgstr "Не е получен token за одобрение." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Не сте абонирани за този профил" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5295,10 +5308,10 @@ msgstr "Не можете да заглушавате потребители н msgid "User is already sandboxed." msgstr "Потребителят вече е заглушен." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Неправилен адрес на е-поща." #. TRANS: Page title for page showing self tags. @@ -5576,19 +5589,19 @@ msgid "Notice deleted." msgstr "Бележката е изтрита." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Бележки с етикет %s, страница %d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Бележки с етикет %s, страница %d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Бележки с етикет %s" @@ -5625,11 +5638,11 @@ msgid "" "yet." msgstr "" -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" @@ -5642,7 +5655,7 @@ msgstr "" msgid "Listed" msgstr "Лиценз" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6149,7 +6162,7 @@ msgstr "Не сте абонирани за този профил" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "За да създавате група, трябва да сте влезли." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6157,16 +6170,16 @@ msgstr "За да създавате група, трябва да сте вле msgid "No ID given." msgstr "Липсват аргументи return-to." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Грешка при обновяване на групата." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Абонати на %1$s, страница %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6299,42 +6312,42 @@ msgstr "Емисия с бележки на %s (Atom)" msgid "You cannot tag this user." msgstr "Не може да изпращате съобщения до този потребител." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Потребителски профил" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. #, fuzzy, php-format -msgid "Tag %s" -msgstr "Етикети" +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Ограничения" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Грешка в Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Потребителски профил" -#. TRANS: Fieldset legend for people tag form. +#. TRANS: Fieldset legend for list form. #, fuzzy -msgid "Tag user" -msgstr "Етикети" +msgid "List user" +msgstr "Ограничения" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Етикети" +msgid "Lists" +msgstr "Ограничения" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" @@ -6344,14 +6357,15 @@ msgctxt "TITLE" msgid "Tags" msgstr "Етикети" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Паролата е записана." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." +msgstr "Използвайте тази бланка за създаване на нова група." #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." @@ -6374,10 +6388,10 @@ msgstr "Потребителят не е заглушен." msgid "Unsubscribed" msgstr "Отписване" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Абонати на %1$s, страница %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7060,21 +7074,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Грешка при добавяне на нов абонамент." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Грешка при добавяне на нов абонамент." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7709,7 +7723,7 @@ msgid "Cancel" msgstr "Отказ" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Запазване" @@ -7758,14 +7772,14 @@ msgid "Do not use this method!" msgstr "Да не се изтрива бележката" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Отговори до %1$s в %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Бележки от %1$s в %2$s." #. TRANS: Title. @@ -9361,14 +9375,14 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "No oEmbed API endpoint available." msgstr "Страницата не е достъпна във вида медия, който приемате" -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Етикет" +msgid "List" +msgstr "Лиценз" -#. TRANS: Field title for people tag. -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +#. TRANS: Field title for list. +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" #. TRANS: Field title for description of list. @@ -9389,11 +9403,11 @@ msgstr[1] "Опишете групата или темата в до %d букв msgid "Delete this list." msgstr "Изтриване на този потребител" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9430,7 +9444,7 @@ msgstr "Абонати" msgid "Subscribers to %1$s list by %2$s." msgstr "Отговори до %1$s в %2$s!" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9456,7 +9470,7 @@ msgstr "Редактиране на профила" msgid "Edit" msgstr "Редактиране" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9469,48 +9483,57 @@ msgid "List Subscriptions" msgstr "Абонаменти" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Абонирани за %s" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Бележки, съдържащи \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Бележки, съдържащи \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Популярни бележки" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Редактиране" +msgid "Edit lists" +msgstr "Неправилен адрес на е-поща." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Етикети" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9523,11 +9546,12 @@ msgstr "Популярни бележки" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Абонати на %1$s, страница %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Не е открит методът в API." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10164,16 +10188,16 @@ msgid "Choose a field to search." msgstr "Изберете етикет за конкретизиране" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10238,7 +10262,7 @@ msgid "Unsubscribe from this user" msgstr "Отписване от този потребител" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10328,87 +10352,43 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Използвайте тази бланка за създаване на нова група." +#~ msgid "No such people tag." +#~ msgstr "Няма такъв етикет." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Грешка при обновяване на групата." +#~ msgid "Public people tag %s" +#~ msgstr "Общ поток, страница %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Повторения на %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Общ поток, страница %d" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Отговори до %1$s в %2$s!" +#~ msgid "People tag cloud" +#~ msgstr "Общ поток, страница %d" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Повторения на %s" +#~ msgid "Tag %s" +#~ msgstr "Етикети" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Отговори до %1$s в %2$s!" +#~ msgid "Tag user" +#~ msgstr "Етикети" #, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Проблем при записване на бележката." - -#~ msgid "Groups with most members" -#~ msgstr "Групи с най-много членове" - -#~ msgid "Groups with most posts" -#~ msgstr "Групи с най-много бележки" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Опишете групата или темата" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Изтриване на този потребител" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Хора" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Етикет" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Редактиране на профила" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Редактиране" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Абонаменти на %s" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Всички абонаменти" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Хора" - -#~ msgid "User" -#~ msgstr "Потребител" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Етикети в бележките на %s" - -#~ msgid "All subscriptions" -#~ msgstr "Всички абонаменти" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Хора" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Абонирани за %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index dd43df0ec8..29707a12e9 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:14+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -116,7 +116,7 @@ msgstr "Enrollañ an arventennoù moned" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -153,9 +153,11 @@ msgstr "Nann-kevreet." msgid "No such profile." msgstr "N'eus ket eus ar profil-se." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -177,7 +179,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Koumanantet" @@ -612,7 +614,7 @@ msgstr "Re hir eo an anv klok (255 arouezenn d'ar muiañ)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2234,7 +2236,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Alias fall : \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Enrollet eo bet ho dibarzhioù." @@ -2257,11 +2259,6 @@ msgstr "N'eo ket reizh ar merk-se : %s." msgid "No tagger or ID." msgstr "Lesanv pe ID ebet." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "N'eus ket eus ar bajenn-se." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "N'eo ket un implijer lec'hel." @@ -4064,26 +4061,26 @@ msgstr "" msgid "People search" msgstr "Klask tud" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Lanv foran - pajenn %d" +msgid "Public list %s" +msgstr "Koumoulenn a merkoù foran" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Respontoù da %1$s, pajenn %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." @@ -4201,10 +4198,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Alioù merket gant %1$s, pajenn %2$d" @@ -4223,23 +4222,23 @@ msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Koumanantet da %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Alioù merket gant %1$s, pajenn %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4621,47 +4620,47 @@ msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Koumoulenn a merkoù foran" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Ar merkoù ziwezhañ evit ar re vrudetañ war %s " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Bezit an hini gentañ oc'h embann unan !" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini " "gentañ da embann un dra !" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Koumoulenn a merkoù foran" +msgid "List cloud" +msgstr "N'eo ket bet kavet an implijer." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5024,7 +5023,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5054,7 +5053,21 @@ msgstr "Dibosupl eo kaout ur jedaouer reked." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5240,10 +5253,10 @@ msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." msgid "User is already sandboxed." msgstr "Er poull-traezh emañ dija an implijer." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "N'eo ket reizh ar merk-se : %s." #. TRANS: Page title for page showing self tags. @@ -5524,19 +5537,19 @@ msgid "Notice deleted." msgstr "Ali dilammet." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Implijerien bet merket drezo o unan gant %1$s - pajenn %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Implijerien bet merket drezo o unan gant %1$s - pajenn %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Alioù merket gant %1$s, pajenn %2$d" @@ -5575,11 +5588,11 @@ msgstr "" "Hemañ eo al lanvad evit %s hag e vignoned met den n'en deus skrivet tra ebet " "evit ar mare." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5594,7 +5607,7 @@ msgstr "" msgid "Listed" msgstr "Aotre implijout" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6109,7 +6122,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6117,16 +6130,16 @@ msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." msgid "No ID given." msgstr "Arguzenn ID ebet." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Dibosupl eo stagañ an implijer %1$s d'ar strollad %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Koumanantet da %1$s, pajenn %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6264,42 +6277,43 @@ msgstr "Gwazh an alioù evit ar merk %s (Atom)" msgid "You cannot tag this user." msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Profil an implijer" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Merk %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Bevennoù" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Fazi Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Profil an implijer" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Merkañ an implijer" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Bevennoù" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Balizennoù" +msgid "Lists" +msgstr "Bevennoù" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Merkoù evidoc'h oc'h unan (lizherennoù, sifroù, -, ., ha _), dispartiet gant " @@ -6311,14 +6325,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Balizennoù" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Ger-tremen enrollet." #. TRANS: Page notice. #, fuzzy -msgid "Use this form to add tags to your subscribers or subscriptions." +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "Implijit ar furmskrid-mañ evit kemmañ ho poellad." #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6344,10 +6358,10 @@ msgstr "Lakaet eo bet da mut an implijer-mañ dija." msgid "Unsubscribed" msgstr "Digoumanantet" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Koumanantet da %1$s, pajenn %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7012,21 +7026,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Dibosupl eo dilemel ar c'houmanant." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Dibosupl eo dilemel ar c'houmanant." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7639,7 +7653,7 @@ msgid "Cancel" msgstr "Nullañ" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Enrollañ" @@ -7687,14 +7701,14 @@ msgid "Do not use this method!" msgstr "Arabat dilemel ar c'hemenn-mañ" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Respontoù da %1$s war %2$s !" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Hizivadennoù eus %1$s e %2$s!" #. TRANS: Title. @@ -9284,15 +9298,15 @@ msgstr "Dibosupl eo dilemel ar c'houmanant." msgid "No oEmbed API endpoint available." msgstr "Dizimplijadus eo ar bostelerezh prim" -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Balizenn" +msgid "List" +msgstr "Liammoù" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Merkoù evit an implijer-mañ (lizherennoù, sifroù, -, ., ha _), dispartiet " "gant virgulennoù pe gant esaouennoù" @@ -9315,11 +9329,11 @@ msgstr[1] "Diskrivit ho poellad gant %d arouezenn" msgid "Delete this list." msgstr "Diverkañ an implijer-mañ" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9356,7 +9370,7 @@ msgstr "Ar re koumanantet" msgid "Subscribers to %1$s list by %2$s." msgstr "Koumanantet da %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9382,7 +9396,7 @@ msgstr "Kemmañ arventennoù ar profil" msgid "Edit" msgstr "Aozañ" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9395,48 +9409,57 @@ msgid "List Subscriptions" msgstr "Koumanantoù" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Koumanantet da %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Hizivadenn gant \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Hizivadenn gant \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Alioù poblek" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Aozañ" +msgid "Edit lists" +msgstr "N'eo ket reizh ar merk-se : %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Balizennoù" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9449,11 +9472,12 @@ msgstr "Alioù poblek" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Koumanantet da %1$s, pajenn %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "N'eo ket bet kavet an implijer." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10088,16 +10112,16 @@ msgid "Choose a field to search." msgstr "" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10162,7 +10186,7 @@ msgid "Unsubscribe from this user" msgstr "En em zigoumanantiñ eus an implijer-mañ" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10252,86 +10276,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Leunit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad." +#~ msgid "No such people tag." +#~ msgstr "N'eus ket eus ar bajenn-se." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Dibosupl eo hizivaat ar strollad." +#~ msgid "Public people tag %s" +#~ msgstr "Lanv foran - pajenn %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Adkemeret eus %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Koumoulenn a merkoù foran" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Respontoù da %1$s, pajenn %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Ar merkoù ziwezhañ evit ar re vrudetañ war %s " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Adkemeret eus %s" +#~ msgid "People tag cloud" +#~ msgstr "Koumoulenn a merkoù foran" + +#~ msgid "Tag %s" +#~ msgstr "Merk %s" + +#~ msgid "Tag user" +#~ msgstr "Merkañ an implijer" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Respontoù da %1$s, pajenn %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Ur gudenn 'zo bet pa veze enrollet boest degemer ar strollad." - -#, fuzzy -#~ msgid "Groups with most members" -#~ msgstr "Ezel eo %s eus ar strolladoù" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Deskrivit ho poellad" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Dilemel ar strollad-mañ" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Tud" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Balizenn" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Kemmañ arventennoù ar profil" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Aozañ" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Koumanantoù %s" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "An holl koumanantoù" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Tud" - -#~ msgid "User" -#~ msgstr "Implijer" - -#, fuzzy -#~ msgid "Tags in %s's notices" -#~ msgstr "N'eus ali nevez evit an implijer-mañ" - -#~ msgid "All subscriptions" -#~ msgstr "An holl koumanantoù" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Tud" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Koumananterien %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 5de94c8349..0351a530bb 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:16+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -128,7 +128,7 @@ msgstr "Desa els paràmetres d'accés" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -167,21 +167,21 @@ msgstr "No heu iniciat una sessió." msgid "No such profile." msgstr "No existeix el perfil." -#. TRANS: Client error displayed trying to reference a non-existing people tag. -#, fuzzy -msgid "No such people tag." -msgstr "No existeix aquesta etiqueta." +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +msgid "No such list." +msgstr "No existeix la llista." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. -#, fuzzy msgid "You cannot tag an OMB 0.1 remote profile with this action." -msgstr "No podeu subscriure-us a un perfil remot OMB 0.1 amb aquesta acció." +msgstr "No podeu etiquetar un perfil remot OMB 0.1 amb aquesta acció." #. TRANS: Client error displayed when an unknown error occurs while tagging a user. #. TRANS: %s is a username. #, php-format msgid "There was an unexpected error while tagging %s." -msgstr "" +msgstr "S'ha produït un error no esperat en etiquetar %s." #. TRANS: Client error displayed when an unknown error occurs while tagging a user. #. TRANS: %s is a profile URL. @@ -190,8 +190,10 @@ msgid "" "There was a problem tagging %s. The remote server is probably not responding " "correctly, please try retrying later." msgstr "" +"S'ha produït un error en etiquetar %s. El servidor remot probablement no " +"està responent correctament. Torneu-ho a provar més endavant." -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Subscrit" @@ -630,7 +632,7 @@ msgstr "El vostre nom sencer és massa llarg (màx. 255 caràcters)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -785,58 +787,51 @@ msgstr "L'àlies no pot ser el mateix que el sobrenom." #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error displayed trying to perform an action related to a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy msgid "List not found." -msgstr "No s'ha trobat el mètode API!" +msgstr "No s'ha trobat la llista." #. TRANS: Client error displayed when trying to update another user's list. msgid "You cannot update lists that do not belong to you." -msgstr "" +msgstr "No podeu actualitzar les llistes que no us pertanyen." #. TRANS: Client error displayed when an unknown error occurs updating a list. #. TRANS: Client error displayed when an unknown error occurs viewing list members. #. TRANS: Client error displayed when an unknown error occurs in the list subscribers action. #. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list. -#, fuzzy msgid "An error occured." msgstr "S'ha produït un error." #. TRANS: Client error displayed when trying to delete another user's list. msgid "You cannot delete lists that do not belong to you." -msgstr "" +msgstr "No podeu eliminar les llistes que no us pertanyen." #. TRANS: Client error displayed when referring to a non-list member. -#, fuzzy msgid "The specified user is not a member of this list." -msgstr "L'usuari no és membre del grup." +msgstr "L'usuari especificat no és membre d'aquesta llista." #. TRANS: Client error displayed when trying to add members to a list without having the right to do so. -#, fuzzy msgid "You are not allowed to add members to this list." -msgstr "No teniu permisos per crear grups en aquest lloc." +msgstr "No teniu permisos per afegir membres a aquesta llista." #. TRANS: Client error displayed when trying to modify list members without specifying them. -#, fuzzy msgid "You must specify a member." -msgstr "Heu d'especificar un perfil." +msgstr "Heu d'especificar un membre." #. TRANS: Client error displayed when trying to remove members from a list without having the right to do so. -#, fuzzy msgid "You are not allowed to remove members from this list." -msgstr "No teniu permisos per crear grups en aquest lloc." +msgstr "No teniu permisos per eliminar membres d'aquesta llista." #. TRANS: Client error displayed when trying to remove a list member that is not part of a list. msgid "The user you are trying to remove from the list is not a member." -msgstr "" +msgstr "L'usuari que esteu provant d'eliminar de la llista no és un membre." #. TRANS: Client error displayed when trying to create a list without a name. -#, fuzzy msgid "A list must have a name." -msgstr "L'enviament Atom ha de ser una entrada Atom." +msgstr "Una llista ha de tenir un nom." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." -msgstr "" +msgstr "L'usuari especificat no és un subscriptor d'aquesta llista." #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. msgid "You are not subscribed to this list." @@ -2252,33 +2247,28 @@ msgid "Invalid alias: \"%s\"" msgstr "L'àlies no és vàlid «%s»" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Configuració guardada." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Elimina l'etiqueta d'usuari %s" +msgstr "Elimina la llista %s" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Edita l'etiqueta d'usuari %s" +msgstr "Edita la llista %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. msgid "No tagger or ID." msgstr "No hi ha cap etiquetador o ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "No existeix aquesta etiqueta." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "No existeix l'usuari." @@ -2288,9 +2278,8 @@ msgid "You must be the creator of the tag to edit it." msgstr "Heu de ser el creador de l'etiqueta per editar-la." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Utilitza aquest formulari per editar el grup." +msgstr "Feu servir aquest formulari per editar la llista." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. msgid "Delete aborted." @@ -2323,9 +2312,8 @@ msgstr "" "les subscripcions que hi estan associades. Encara voleu continuar?" #. TRANS: TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "No s'ha pogut actualitzar l'usuari." +msgstr "No s'ha pogut actualitzar la llista." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -3147,7 +3135,7 @@ msgstr "" msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" -"Feu servir aquest formulari per convidar els vostres amics i col·legues a " +"Feu servir aquest formulari per convidar els vostres amics i companys a " "utilitzar aquest servei." #. TRANS: Field label for a list of e-mail addresses. @@ -4081,94 +4069,89 @@ msgstr "" msgid "People search" msgstr "Cerca de gent" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. -#, php-format -msgid "Public people tag %s" -msgstr "Etiqueta d'usuari pública %s" +#. TRANS: Title for list page. +#. TRANS: %s is a list. +#, fuzzy, php-format +msgid "Public list %s" +msgstr "Les vostres llistes públiques" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. -#, php-format -msgid "Public people tag %1$s, page %2$d" +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, fuzzy, php-format +msgid "Public list %1$s, page %2$d" msgstr "Etiqueta pública d'usuari %1$s, pàgina %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" -"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" -"(http://ca.wikipedia.org/wiki/Microblogging) basat en l'eina lliure " -"[StatusNet](http://status.net/). Els seus membre comparteixen missatges " -"curts sobre llur vida i interessos. " +"Les etiquetes d'usuari és la forma com agrupeu gent similar a %%%%site.name%%" +"%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging) " +"basat en l'eina lliure [StatusNet](http://status.net/). Podeu seguir " +"fàcilment què estan fent subscrivint-vos a la línia temporal d'una etiqueta." #. TRANS: Client error displayed when a tagger is expected but not provided. -#, fuzzy msgid "No tagger." -msgstr "No existeix aquesta etiqueta." +msgstr "No existeix l'etiquetador." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Respostes a %1$s el %2$s." +msgstr "Gent llistada a %1$s per %2$s." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Respostes a %1$s, pàgina %2$d" +msgstr "Gent llistada a %1$s per %2$s, pàgina %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. -#, fuzzy msgid "Creator" -msgstr "S'ha creat" +msgstr "Creador" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "llista la gent que us segueix" +msgstr "Les vostres llistes privades" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Núvol públic d'etiquetes" +msgstr "Les vostres llistes públiques" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Edita el grup %s" +msgstr "Les vostres llistes" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Llistes per %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Avisos de %1$s, pàgina %2$d" +msgstr "Llistes per %1$s, pàgina %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" -msgstr "" +msgstr "No podeu veure les llistes privades d'altres" #. TRANS: Mode selector label. msgid "Mode" msgstr "Mode" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Safata de sortida per %s" +msgstr "Llistes de %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -4177,18 +4160,16 @@ msgstr "Seleccioneu l'etiqueta per filtrar" #. TRANS: Checkbox title. msgid "Show private tags." -msgstr "" +msgstr "Mostra les etiquetes privades." #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" msgstr "Públic" #. TRANS: Checkbox title. -#, fuzzy msgid "Show public tags." -msgstr "No existeix aquesta etiqueta." +msgstr "Mostra les etiquetes públiques." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. @@ -4199,7 +4180,7 @@ msgstr "Vés-hi" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4207,32 +4188,33 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" +"Aquestes són llistes creades per **%s**. Les llistes són la forma com " +"agrupeu gent similar a %%%%site.name%%%%, un servei de [microblogging]" "(http://ca.wikipedia.org/wiki/Microblogging) basat en l'eina lliure " -"[StatusNet](http://status.net/). Els seus membre comparteixen missatges " -"curts sobre llur vida i interessos. " +"[StatusNet](http://status.net/). Podeu seguir fàcilment què estan fent " +"subscrivint-vos a la línia temporal d'una etiqueta." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "" -"Ningú ha enviat encara cap avís amb una [etiqueta de coixinet (#)](%%doc.tags" -"%%)." +msgstr "%s no ha creat encara cap [llista](%%doc.lists%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Llistes que contenen %s" -#, fuzzy, php-format +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Avisos etiquetats amb %1$s, pàgina %2$d" +msgstr "Llistes que contenen %1$s, pàgina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4240,48 +4222,47 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" -"(http://ca.wikipedia.org/wiki/Microblogging) basat en l'eina lliure " -"[StatusNet](http://status.net/). Els seus membre comparteixen missatges " -"curts sobre llur vida i interessos. " +"Aquestes són llistes de **%s**. Les llistes són la forma com agrupeu gent " +"similar a %%%%site.name%%%%, un servei de [microblogging](http://ca." +"wikipedia.org/wiki/Microblogging) basat en l'eina lliure [StatusNet](http://" +"status.net/). Podeu seguir fàcilment què estan fent subscrivint-vos a la " +"línia temporal d'una etiqueta." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. -#, fuzzy, php-format -msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "" -"Ningú ha enviat encara cap avís amb una [etiqueta de coixinet (#)](%%doc.tags" -"%%)." - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. +#. TRANS: %s is a user nickname. #, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" +msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." +msgstr "Ningú ha afegit %s encara a cap [llista](%%doc.lists%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" -msgstr "Avisos de %1$s etiquetats amb %2$s, pàgina %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Subscriptors de la llista %1$s per %2$s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" +msgstr "Subscriptors de gent etiquetada amb %1$s per %2$s, pàgina %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Subscrit a %s." +msgstr "Llistes en què s'ha subscrit %s." #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "%1$s subscripcions, pàgina %2$d" +msgstr "Llistes en què s'ha subscrit %1$s, pàgina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4289,10 +4270,11 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" +"Aquestes són llistes en què s'ha subscrit **%s**. Les llistes són la forma " +"com agrupeu gent similar a %%%%site.name%%%%, un servei de [microblogging]" "(http://ca.wikipedia.org/wiki/Microblogging) basat en l'eina lliure " -"[StatusNet](http://status.net/). Els seus membre comparteixen missatges " -"curts sobre llur vida i interessos. " +"[StatusNet](http://status.net/). Podeu seguir fàcilment què estan fent " +"subscrivint-vos a la línia temporal d'una etiqueta." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -4362,17 +4344,16 @@ msgstr "" #. TRANS: %s is a field name. #, php-format msgid "Unidentified field %s." -msgstr "" +msgstr "Camp no identificat %s." #. TRANS: Page title. -#, fuzzy msgctxt "TITLE" msgid "Search results" -msgstr "Cerca al lloc" +msgstr "Resultats de la cerca" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." -msgstr "" +msgstr "La cadena de cerca ha de contenir com a mínim 3 caràcters." #. TRANS: Page title for profile settings. msgid "Profile settings" @@ -4643,51 +4624,49 @@ msgstr "" "Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" "wiki/Microblogging) basat en l'eina lliure [StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Núvol públic d'etiquetes" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Aquestes són les etiquetes recents més populars a %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." -msgstr "" -"Ningú ha enviat encara cap avís amb una [etiqueta de coixinet (#)](%%doc.tags" -"%%)." +msgid "No one has [listed](%%doc.tags%%) anyone yet." +msgstr "Ningú ha [etiquetat](%%doc.tags%%) encara ningú." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" -msgstr "Sigueu el primer en escriure'n un!" +msgid "Be the first to list someone!" +msgstr "Sigueu el primer en etiquetar algú!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Per què no hi [registreu un compte](%%action.register%%) i sou el primer en " -"escriure'n un!" +"etiquetar algú!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Núvol públic d'etiquetes" +msgid "List cloud" +msgstr "No s'ha trobat la llista." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. -#, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" -msgstr[0] "" -msgstr[1] "" +#. TRANS: Link title for number of listed people. %d is the number of listed people. +#, fuzzy, php-format +msgid "1 person listed" +msgid_plural "%d people listed" +msgstr[0] "S'ha etiquetat 1 persona" +msgstr[1] "S'han etiquetat %d persones" #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format @@ -4915,7 +4894,7 @@ msgid "" "link up to friends and colleagues." msgstr "" "Amb aquest formulari, podeu crear un compte nou. Podeu enviar avisos i " -"enllaçar a amics i col·legues." +"enllaçar a amics i companys." #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. msgctxt "PASSWORD" @@ -5057,7 +5036,7 @@ msgstr "URL del vostre perfil en un altre servei de microblogging compatible." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriu-m'hi" @@ -5082,13 +5061,29 @@ msgid "Could not get a request token." msgstr "No s'ha pogut obtenir un testimoni de sol·licitud." #. TRANS: Client error displayed when trying to (un)tag an OMB 0.1 remote profile. -#, fuzzy msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." -msgstr "No podeu subscriure-us a un perfil remot OMB 0.1 amb aquesta acció." - -#. TRANS: Title after untagging a people tag. -msgid "Untagged" msgstr "" +"No podeu etiquetar o desetiquetar un perfil remot OMB 0.1 amb aquesta acció." + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, fuzzy, php-format +msgid "There was an unexpected error while listing %s." +msgstr "S'ha produït un error no esperat en etiquetar %s." + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, fuzzy, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" +"S'ha produït un error en etiquetar %s. El servidor remot probablement no " +"està responent correctament. Torneu-ho a provar més endavant." + +#. TRANS: Title after removing a user from a list. +msgid "Untagged" +msgstr "Desetiquetat" #. TRANS: Client error displayed when trying to repeat a notice while not logged in. msgid "Only logged-in users can repeat notices." @@ -5277,17 +5272,17 @@ msgstr "No podeu posar els usuaris en un entorn de prova en aquest lloc." msgid "User is already sandboxed." msgstr "L'usuari ja es troba en un entorn de proves." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "No és una etiqueta de gent vàlida: %s" #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s, page %2$d" -msgstr "Usuaris que s'han etiquetat amb %1$s - pàgina %2$d" +msgstr "Usuaris que s'han etiquetat ells mateixos amb %1$s - pàgina %2$d" #. TRANS: Title for the sessions administration panel. msgctxt "TITLE" @@ -5566,81 +5561,79 @@ msgid "Notice deleted." msgstr "S'ha eliminat l'avís." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "Usuaris que s'han etiquetat amb %1$s - pàgina %2$d" +msgstr "Línia temporal privada de la vostra llista %1$s, pàgina %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "Usuaris que s'han etiquetat amb %1$s - pàgina %2$d" +msgstr "Línia temporal de la vostra llista %1$s, pàgina %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "Avisos de %1$s etiquetats amb %2$s, pàgina %3$d" +msgstr "Línia temporal de la llista %1$s per %2$s, pàgina %3$d" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Private timeline of %s list by you" -msgstr "llista la gent que us segueix" +msgstr "Línia temporal privada de la vostra llista %s" #. TRANS: Title for public list timeline where the viewer is the tagger. #. TRANS: %s is a list. #, php-format msgid "Timeline for %s list by you" -msgstr "" +msgstr "Línia temporal de la vostra llista %s" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Respostes a %1$s el %2$s." +msgstr "Línia temporal de la llista %1$s per %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Canal dels preferits de %s (Atom)" +msgstr "Canal de la llista %1$s per %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"Aquesta és la línia temporal de %s i amics, però ningú hi ha publicat res " -"encara." +"Aquesta és la línia temporal de la llista %1$s per %2$s, però ningú hi ha " +"publicat res encara." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." -msgstr "" +msgstr "Proveu d'etiquetar més gent." -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" "Per què no hi [registreu un compte](%%action.register%%) i sou el primer en " -"escriure'n un!" +"seguir aquesta línia temporal!" #. TRANS: Header on show list page. -#, fuzzy msgid "Listed" -msgstr "Llicència" +msgstr "Llistat" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. -#, fuzzy msgid "Show all" -msgstr "Mostra la resposta" +msgstr "Mostra-ho tot" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. @@ -6144,25 +6137,26 @@ msgstr "No podeu subscriure-us a un perfil remot OMB 0.1 amb aquesta acció." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." -msgstr "Heu d'haver iniciat una sessió per crear un grup." +msgid "You must be logged in to unsubscribe from a list." +msgstr "" +"Heu d'haver iniciat una sessió per cancel·lar la subscripció d'una etiqueta " +"d'usuari." #. TRANS: Client error displayed when trying to perform an action without providing an ID. -#, fuzzy msgid "No ID given." -msgstr "No hi ha cap argument ID." +msgstr "No s'ha donat cap ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." -msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" +msgstr "No s'ha pogut afegir l'usuari %1$s a l'etiqueta d'usuari %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" -msgstr "%1$s subscriptors, pàgina %2$d" +msgid "%1$s subscribed to list %2$s by %3$s" +msgstr "%1$s subscrits a l'etiqueta d'usuari %2$s per %3$s" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. @@ -6264,7 +6258,6 @@ msgid "Subscription feed for %s (Atom)" msgstr "Canal de subscripció de %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "MI" @@ -6300,43 +6293,45 @@ msgstr "Canal d'avisos de l'etiqueta %s (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." -msgstr "No podeu enviar un missatge a l'usuari." +msgstr "No podeu etiquetar l'usuari." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" -msgstr "Perfil de l'usuari" +msgid "List a profile" +msgstr "Etiqueta un perfil" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Etiqueta %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Llistes" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" msgid "Error" msgstr "Error" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Perfil de l'usuari" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Etiqueta usuari" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Llistes" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. +#, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Etiquetes" +msgid "Lists" +msgstr "Llistes" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. +#, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Etiquetes d'aquest usuari (lletres, nombres, -, ., i _), separades amb comes " @@ -6347,12 +6342,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Etiquetes" -#. TRANS: Success message if people tags are saved. -msgid "Tags saved." +#. TRANS: Success message if lists are saved. +#, fuzzy +msgid "Lists saved." msgstr "S'han desat les etiquetes." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Utilitzeu aquest formulari per afegir etiquetes als vostres subscriptors i " "subscripcions." @@ -6377,11 +6374,11 @@ msgstr "L'usuari no està silenciat." msgid "Unsubscribed" msgstr "No subscrit" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" -msgstr "%1$s subscriptors, pàgina %2$d" +msgid "%1$s unsubscribed from list %2$s by %3$s" +msgstr "%1$s han cancel·lat la subscripció a l'etiquet d'usuari %2$s per %3$s" #. TRANS: Client error displayed when trying to update profile with an incompatible license. #. TRANS: %1$s is the license incompatible with site license %2$s. @@ -6920,11 +6917,11 @@ msgid "No such profile (%1$d) for notice (%2$d)." msgstr "No hi ha cap perfil (%1$d) per a l'avís (%2$d)." #. TRANS: Server exception. %s are the error details. -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s." msgstr "" -"S'ha produït un error de la base de dades en inserir una etiqueta de " -"coixinet (%): %s" +"S'ha produït un error a la base de dades en inserir l'etiqueta amb coixinet " +"(hashtag): %s" #. TRANS: Client exception thrown if a notice contains too many characters. msgid "Problem saving notice. Too long." @@ -7029,29 +7026,24 @@ msgid "The tag you are trying to rename to already exists." msgstr "L'etiqueta que esteu provant de reanomenar ja existeix." #. TRANS: Server exception saving new tag without having a tagger specified. -#, fuzzy msgid "No tagger specified." -msgstr "No s'ha especificat cap grup." +msgstr "No s'ha especificat cap etiquetador." #. TRANS: Server exception saving new tag without having a tag specified. -#, fuzzy msgid "No tag specified." -msgstr "No s'ha especificat cap grup." +msgstr "No s'ha especificat cap etiqueta." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not create profile tag." -msgstr "No s'ha pogut desar el perfil." +msgstr "No s'ha pogut crear l'etiqueta de perfil." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag URI." -msgstr "No s'ha pogut desar el perfil." +msgstr "No s'ha pogut definir l'URI de l'etiqueta de perfil." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag mainpage." -msgstr "No s'ha pogut desar el perfil." +msgstr "No s'ha pogut definir la pàgina principal de l'etiqueta de perfil." #. TRANS: Client exception thrown trying to set more tags than allowed. #, php-format @@ -7059,23 +7051,28 @@ msgid "" "You already have created %d or more tags which is the maximum allowed number " "of tags. Try using or deleting some existing tags." msgstr "" +"Ja heu creat %d o més etiquetes, que és el màxim nombre d'etiquetes permès. " +"Proveu de reemplaçar o eliminar etiquetes que ja existeixen." -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. -#, php-format +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. +#, fuzzy, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" +"Ja teniu %1$d o més persones etiquetades amb %2$s, que és el nombre màxim " +"permès. Proveu de desetiquetar-ne uns quants que tinguin la mateixa etiqueta " +"abans de res." -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." -msgstr "No s'ha pogut eliminar la subscripció." +msgid "Adding list subscription failed." +msgstr "No s'ha pogut afegir la subscripció de l'etiqueta d'usuari." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." -msgstr "No s'ha pogut eliminar la subscripció." +msgid "Removing list subscription failed." +msgstr "No s'ha pogut eliminar la subscripció de l'etiqueta d'usuari." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. msgid "Missing profile." @@ -7133,7 +7130,7 @@ msgstr "Us donem la benvinguda a %1$s, @%2$s!" #. TRANS: Exception thrown when trying view "repeated to me". msgid "Not implemented since inbox change." -msgstr "" +msgstr "No s'ha implementat des del canvi de la safata d'entrada." #. TRANS: Server exception. msgid "No single user defined for single-user mode." @@ -7680,7 +7677,7 @@ msgid "Cancel" msgstr "Cancel·la" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Desa" @@ -7726,15 +7723,15 @@ msgid "Do not use this method!" msgstr "No feu servir aquest mètode!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Línia temporal de la gent etiqueta amb #%1$s per %2$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" -msgstr "Actualitzacions de %1$s a %2$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" +msgstr "Actualitzacions de l'etiqueta d'usuari %2$s de %1$s a %3$s!" #. TRANS: Title. msgid "Notices where this attachment appears" @@ -7837,9 +7834,8 @@ msgstr "" "Avisos: %3$s" #. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. -#, fuzzy msgid "Could not create favorite: Already favorited." -msgstr "No es pot crear el preferit: ja era preferit." +msgstr "No es pot crear el preferit: ja ho era." #. TRANS: Text shown when a notice has been marked as favourite successfully. msgid "Notice marked as fave." @@ -7861,16 +7857,16 @@ msgstr "%1$s ha deixat el grup %2$s." #. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error tagging %1$s: %2$s" -msgstr "" +msgstr "S'ha produït un error en etiquetar %1$s: %2$s" #. TRANS: Succes message displayed if tagging a user succeeds. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. #. TRANS: Plural is decided based on the number of tags added (not part of message). -#, fuzzy, php-format +#, php-format msgid "%1$s was tagged %2$s" msgid_plural "%1$s was tagged %2$s" -msgstr[0] "%1$s i %2$s" -msgstr[1] "%1$s i %2$s" +msgstr[0] "%1$s s'ha etiquetat amb %2$s" +msgstr[1] "%1$s s'han etiquetat amb %2$s" #. TRANS: Separator for list of tags. #. TRANS: Separator in list of user names like "You, Bob, Mary". @@ -7887,7 +7883,7 @@ msgstr "L'etiqueta no és vàlida: «%s»" #. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error untagging %1$s: %2$s" -msgstr "" +msgstr "S'ha produït un error en desetiquetar %1$s: %2$s " #. TRANS: Succes message displayed if untagging a user succeeds. #. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. @@ -7895,8 +7891,8 @@ msgstr "" #, php-format msgid "The following tag was removed from user %1$s: %2$s." msgid_plural "The following tags were removed from user %1$s: %2$s." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "S'ha eliminat l'etiqueta següent de l'usuari %1$s: %2$s." +msgstr[1] "S'han eliminat les etiquetes següents de l'usuari %1$s: %2$s." #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. @@ -8118,16 +8114,14 @@ msgid "lists the groups you have joined" msgstr "llista els grups on us heu unit" #. TRANS: Help message for IM/SMS command "tag". -#, fuzzy msgctxt "COMMANDHELP" msgid "tag a user" -msgstr "Etiqueta usuari" +msgstr "etiqueta un usuari" #. TRANS: Help message for IM/SMS command "untag". -#, fuzzy msgctxt "COMMANDHELP" msgid "untag a user" -msgstr "Etiqueta usuari" +msgstr "desetiqueta un usuari" #. TRANS: Help message for IM/SMS command "subscriptions". msgctxt "COMMANDHELP" @@ -8290,10 +8284,9 @@ msgstr "Grups" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Límits" +msgstr "Llistes" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -8567,14 +8560,12 @@ msgid "Group actions" msgstr "Accions del grup" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Avisos populars" +msgstr "Grups populars" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Tots els grups" +msgstr "Grups actius" #. TRANS: Title for group tag cloud section. #. TRANS: %s is a group name. @@ -8666,10 +8657,9 @@ msgid "Transport cannot be null." msgstr "El transport no pot ser nul." #. TRANS: Button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "Convida nous usuaris" +msgstr "Convida més companys" #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -9262,14 +9252,13 @@ msgid "Notices" msgstr "Avisos" #. TRANS: Separator in profile addressees list. -#, fuzzy msgctxt "SEPARATOR" msgid ", " msgstr ", " #. TRANS: Start of profile addressees list. msgid " ▶ " -msgstr "" +msgstr " ▶ " #. TRANS: Used in coordinates as abbreviation of north. msgid "N" @@ -9365,64 +9354,57 @@ msgstr "No s'ha pogut inserir una nova subscripció." msgid "No oEmbed API endpoint available." msgstr "No hi ha cap punt d'enllaç oEmbed disponible." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Etiqueta" +msgid "List" +msgstr "Llista" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." -msgstr "" -"Etiquetes d'aquest usuari (lletres, nombres, -, ., i _), separades per comes " -"o espais." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." +msgstr "Canvia l'etiqueta (es permet lletres, nombres, -, ., i _)." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "Descriviu el grup o la temàtica." +msgstr "Descriviu la llista o la temàtica." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "Descriviu el grup o la temàtica en %d caràcter o menys." -msgstr[1] "Descriviu el grup o la temàtica en %d caràcters o menys." +msgstr[0] "Descriviu la llista o la temàtica en %d caràcter." +msgstr[1] "Descriviu la llista o la temàtica en %d caràcters." #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Elimina l'usuari." +msgstr "Elimina la llista." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" -msgstr "" +msgstr "Afegeix o elimina gent" -#. TRANS: Header in people tag edit form. -#, fuzzy +#. TRANS: Header in list edit form. msgctxt "HEADER" msgid "Search" msgstr "Cerca" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Enllaços" +msgstr "Llista" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s i %2$s" +msgstr "Llista %1$s per %2$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Llicència" +msgstr "Llistat" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. @@ -9432,117 +9414,119 @@ msgstr "Subscriptors" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "Subscrit a %s." +msgstr "Subscriptors de la llista %1$s per %2$s." -#. TRANS: Menu item in people tag navigation panel. -#, fuzzy +#. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" msgstr "Edita" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Edita el grup %s" +msgstr "Edita la llista %s que heu creat." #. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy msgid "Tagged" -msgstr "Etiqueta" +msgstr "Etiquetat" #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "Edita els paràmetres del perfil." +msgstr "Edita els paràmetres de la llista." #. TRANS: Text for link to edit list settings. msgid "Edit" msgstr "Edita" -#. TRANS: Privacy mode text in people tag list item for private tags. -#, fuzzy +#. TRANS: Privacy mode text in list list item for private list. msgctxt "MODE" msgid "Private" msgstr "Privat" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "Subscripcions" +msgstr "Subscripcions de llistes" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "Subscrit a %s." +msgstr "Llistes en què s'ha subscrit %s." #. TRANS: Menu item in the group navigation page. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Actualitzacions amb «%s»" +msgstr "Llistes que contenen %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Actualitzacions amb «%s»" +msgstr "Llistes que contenen %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Llistes per %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "%1$s i %2$s" +msgstr "Llistes per %s." -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Llistes populars" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Edita" +msgid "Edit lists" +msgstr "Edita la llista %s" + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "Etiquetes" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Avisos populars" +msgstr "Llistes populars" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "%1$s subscriptors, pàgina %2$d" +msgstr "Llistat: %1$d Subscriptors: %2$d" -#, fuzzy, php-format +#. TRANS: Title for page that displays which lists current user is part of. +#, php-format msgid "Lists with you" -msgstr "No s'ha trobat el mètode API!" +msgstr "Llistes en què hi apareixeu" -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Actualitzacions amb «%s»" +msgstr "Llistes que contenen %s" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "Subscripcions de %s" +msgstr "Subscripcions de llistes" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -9634,14 +9618,12 @@ msgid "Search the site." msgstr "Cerca al lloc" #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Segueix" +msgstr "Seguint" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Segueix" +msgstr "Seguidors" #. TRANS: Label for user statistics. msgid "User ID" @@ -9665,9 +9647,8 @@ msgid "Groups" msgstr "Grups" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "Límits" +msgstr "Llistes" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -9766,6 +9747,7 @@ msgid "" "* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" "* [Collecta](http://collecta.com/#q=%s)\n" msgstr "" +"\n" "També podeu provar de cercar a altres motors de cerca:\n" "\n" "* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%" @@ -9973,9 +9955,9 @@ msgstr "Groups on %s n'és membre." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "List subscriptions by %s." -msgstr "Gent subscrita a %s." +msgstr "Subscripcions de llistes per %s." #. TRANS: Menu item in local navigation menu. msgctxt "MENU" @@ -10110,50 +10092,46 @@ msgstr[0] "Una persona ha repetit l'avís." msgstr[1] "%d persones ha repetit l'avís." #. TRANS: Form legend. -#, fuzzy, php-format +#, php-format msgid "Search and list people" -msgstr "Cerca al lloc" +msgstr "Cerca i llista la gent" #. TRANS: Dropdown option for searching in profiles. -#, fuzzy msgid "Everything" -msgstr "Tothom" +msgstr "Tot" #. TRANS: Dropdown option for searching in profiles. -#, fuzzy msgid "Fullname" msgstr "Nom complet" #. TRANS: Dropdown option for searching in profiles. msgid "URI (Remote users)" -msgstr "" +msgstr "URI (usuaris remots)" #. TRANS: Dropdown field label. -#, fuzzy msgctxt "LABEL" msgid "Search in" -msgstr "Cerca al lloc" +msgstr "Cerca a" #. TRANS: Dropdown field title. -#, fuzzy msgid "Choose a field to search." -msgstr "Trieu una etiqueta per escurçar la llista" +msgstr "Trieu un camp per cercar-hi." #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" -msgstr "%1$s i %2$s" +msgid "Remove %1$s from list %2$s" +msgstr "Llista %1$s per %2$s." -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "Llista %1$s per %2$s." #. TRANS: Title for top posters section. msgid "Top posters" -msgstr "Qui més publica" +msgstr "Qui publica més" #. TRANS: Option in drop-down of potential addressees. msgctxt "SENDTO" @@ -10164,7 +10142,7 @@ msgstr "Tothom" #. TRANS: %s is a StatusNet sitename. #, php-format msgid "My colleagues at %s" -msgstr "Els meus col·legues a %s" +msgstr "Els meus companys a %s" #. TRANS: Label for drop-down of potential addressees. msgctxt "LABEL" @@ -10208,7 +10186,7 @@ msgid "Unsubscribe from this user" msgstr "Cancel·la la subscripció d'aquest usuari" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancel·la la subscripció" @@ -10294,86 +10272,44 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Utilitza aquest formulari per editar l'etiqueta d'usuari." +#~ msgid "No such people tag." +#~ msgstr "No existeix l'etiqueta d'usuari." -#~ msgid "Could not update people tag." -#~ msgstr "No s'ha pogut actualitzar l'etiqueta d'usuari." +#~ msgid "Public people tag %s" +#~ msgstr "Etiqueta d'usuari pública %s" -#, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Repeticions de %s" +#~ msgid "Subscribers of people tagged %1$s by %2$s" +#~ msgstr "Subscriptor de gent etiquetada amb %1$s per %2$s" -#, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Respostes a %1$s, pàgina %2$d" +#~ msgid "Public people tag cloud" +#~ msgstr "Núvol públic d'etiquetes d'usuari" -#, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Repeticions de %s" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Aquestes són les etiquetes d'usuari més populars a %s" -#, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Respostes a %1$s, pàgina %2$d" +#~ msgid "People tag cloud" +#~ msgstr "Núvol d'etiquetes d'usuari" -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "S'ha produït un problema en desar la safata d'entrada del grup." +#~ msgid "Tag %s" +#~ msgstr "Etiqueta %s" -#~ msgid "Groups with most members" -#~ msgstr "Grups amb més membres" +#~ msgid "Tag user" +#~ msgstr "Etiqueta usuari" -#~ msgid "Groups with most posts" -#~ msgstr "Grups amb més entrades" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Descriviu el grup o la temàtica." - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Elimina el grup." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Gent" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Etiqueta" -#, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Edita els paràmetres del perfil." +#~ msgctxt "LABEL" +#~ msgid "Tags by you" +#~ msgstr "Etiquetes que heu creat" -#, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Gent a qui %s s'ha subscrit." +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Edita les etiquetes" -#, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Totes les subscripcions" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "Desetiqueta %1$s com %2$s" -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Gent" - -#~ msgid "User" -#~ msgstr "Usuari" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Etiquetes en els avisos de %s" - -#~ msgid "All subscriptions" -#~ msgstr "Totes les subscripcions" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Gent" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Gent subscrita a %s." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "Etiqueta %1$s com %2$s" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index a4be9d33c4..9962875b33 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -13,18 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:07+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:17+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -116,7 +116,7 @@ msgstr "uložit nastavení přístupu" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -153,10 +153,12 @@ msgstr "Nejste přihlášen(a)." msgid "No such profile." msgstr "Žádný takový profil." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." -msgstr "Žádný takový štítek lidí." +msgid "No such list." +msgstr "Žádná taková nálepka." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. #, fuzzy @@ -178,7 +180,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Prihlášen" @@ -622,7 +624,7 @@ msgstr "Celé jméno je moc dlouhé (maximální délka je 255 znaků)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2295,7 +2297,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Neplatný alias: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Nastavení uloženo." @@ -2318,11 +2320,6 @@ msgstr "Není platný člověkotag: %s." msgid "No tagger or ID." msgstr "Žádná přezdívka nebo ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Žádná taková nálepka." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Uživatel neexistuje." @@ -4177,26 +4174,26 @@ msgstr "" msgid "People search" msgstr "Hledání lidí" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Veřejná časová osa, strana %d" +msgid "Public list %s" +msgstr "Veřejný tag cloud" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Odpovědi na %1$s, strana %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** je skupina uživatelů na %%%%site.name%%%%, [mikro-blogovací](http://" "drbz.cz/i/napoveda-faq#mikroblog) službě založené na Free Software nástroji " @@ -4317,10 +4314,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "Nikdo ještě neposlal oznámení s [tagem](%%doc.tags%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Oznámení označená %1$s, strana %2$d" @@ -4341,23 +4340,23 @@ msgstr "" "[StatusNet](http://status.net/). Její členové sdílejí krátké zprávy o svém " "životě a zájmech. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "Nikdo ještě neposlal oznámení s [tagem](%%doc.tags%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Přihlášeno k %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Oznámení označená %1$s, strana %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4741,46 +4740,46 @@ msgstr "" "faq#mikroblog) služba založená na Free Software nástroji [StatusNet](http://" "status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Veřejný tag cloud" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Poslední nejpopulárnější značky na %s " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Nikdo ještě neposlal oznámení s [tagem](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Pošlete něco jako první!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Proč ne [zaregistrovat účet](%%action.register%%) a poslat něco jako první!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Veřejný tag cloud" +msgid "List cloud" +msgstr " API metoda nebyla nalezena." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -5160,7 +5159,7 @@ msgstr "Adresa profilu na jiných kompatibilních mikroblozích." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5194,7 +5193,21 @@ msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" "Touto akcí se nemůžete se přihlásit k odběru vzdáleného OMB 0.1 profilu." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5386,10 +5399,10 @@ msgstr "Nemůžete sandboxovat uživatele na této stránce." msgid "User is already sandboxed." msgstr "Uživatel je již sandboxován." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Není platný člověkotag: %s." #. TRANS: Page title for page showing self tags. @@ -5688,19 +5701,19 @@ msgid "Notice deleted." msgstr "Oznámení smazáno." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Uživatelé kteří se sami otagovali %1$s - strana %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Uživatelé kteří se sami otagovali %1$s - strana %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Oznámení označená %1$s, strana %2$d" @@ -5739,11 +5752,11 @@ msgstr "" "Tohle je časová osa pro uživatele %s a jeho(její) přátele ale nikdo zatím " "nic nenapsal." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5757,7 +5770,7 @@ msgstr "" msgid "Listed" msgstr "Licence" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6277,7 +6290,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "K vytvoření skupiny musíte být přihlášen." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6285,16 +6298,16 @@ msgstr "K vytvoření skupiny musíte být přihlášen." msgid "No ID given." msgstr "Žádný argument ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Nemohu připojit uživatele %1$s do skupiny %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "odběratelé %1$s, strana %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6438,42 +6451,43 @@ msgid "You cannot tag this user." msgstr "" "Nemůžete odesílat zprávy tomuto uživateli. (musíte být vzájemně prihlášení)" -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Uživatelský profil" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Otagujte %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Omezení" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Ajax Chyba" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Uživatelský profil" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Otagujte uživatele" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Omezení" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Tagy" +msgid "Lists" +msgstr "Omezení" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "Otagujte se (písmena, čísla, -, . a _), oddělené čárkami nebo mezerami" @@ -6483,13 +6497,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Tagy" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Heslo uloženo" #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Použijte tento formulář k přidání nálepek na vaše posluchače nebo ty které " "posloucháte." @@ -6514,10 +6529,10 @@ msgstr "Uživatel není umlčen." msgid "Unsubscribed" msgstr "Odhlášeno" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "odběratelé %1$s, strana %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7213,21 +7228,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Nelze smazat odebírání" -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Nelze smazat odebírání" #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7845,7 +7860,7 @@ msgid "Cancel" msgstr "Zrušit" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Uložit" @@ -7893,14 +7908,14 @@ msgid "Do not use this method!" msgstr "Neodstraňujte toto oznámení" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Odpovědi na %1$s na %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Oznámení od %1$s na %2$s!" #. TRANS: Title. @@ -9593,15 +9608,15 @@ msgstr "Nelze vložit odebírání" msgid "No oEmbed API endpoint available." msgstr "IM není k dispozici." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Značka" +msgid "List" +msgstr "Odkazy" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Tagy pro tohoto uživatele (písmena, číslice, -,., a _), oddělené čárkou nebo " "mezerou" @@ -9625,11 +9640,11 @@ msgstr[2] "Popište skupinu nebo téma ve %d znacích" msgid "Delete this list." msgstr "Odstranit tohoto uživatele" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9666,7 +9681,7 @@ msgstr "Odběratelé" msgid "Subscribers to %1$s list by %2$s." msgstr "Přihlášeno k %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9692,7 +9707,7 @@ msgstr "Upravit nastavení profilu" msgid "Edit" msgstr "Editovat" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9705,48 +9720,57 @@ msgid "List Subscriptions" msgstr "Odběry" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Přihlášeno k %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Hlášky s \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Hlášky s \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Populární oznámení" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Editovat" +msgid "Edit lists" +msgstr "Není platný člověkotag: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Tagy" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9759,11 +9783,12 @@ msgstr "Populární oznámení" msgid "Listed: %1$d Subscribers: %2$d" msgstr "odběratelé %1$s, strana %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr " API metoda nebyla nalezena." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10404,16 +10429,16 @@ msgid "Choose a field to search." msgstr "Vyberte si značku k zúžení seznamu" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10476,7 +10501,7 @@ msgid "Unsubscribe from this user" msgstr "Odhlásit se od tohoto uživatele" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10570,87 +10595,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Použijte tento formulář k úpravám skupiny." +#~ msgid "No such people tag." +#~ msgstr "Žádný takový štítek lidí." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Nelze aktualizovat skupinu." +#~ msgid "Public people tag %s" +#~ msgstr "Veřejná časová osa, strana %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Opakování %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Veřejný tag cloud" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Odpovědi na %1$s, strana %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Poslední nejpopulárnější značky na %s " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Opakování %s" +#~ msgid "People tag cloud" +#~ msgstr "Veřejný tag cloud" + +#~ msgid "Tag %s" +#~ msgstr "Otagujte %s" + +#~ msgid "Tag user" +#~ msgstr "Otagujte uživatele" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Odpovědi na %1$s, strana %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problém při ukládání skupinového inboxu" - -#~ msgid "Groups with most members" -#~ msgstr "Skupiny s nejvíce členy" - -#~ msgid "Groups with most posts" -#~ msgstr "Skupiny s nejvíce příspěvky" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Popište skupinu nebo téma" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Odstranit tohoto uživatele" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Lidé" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Značka" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Upravit nastavení profilu" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Editovat" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Lidé ke kterým je %s přihlášen" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Všechny odběry" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Lidé" - -#~ msgid "User" -#~ msgstr "Uživatel" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Značky v oznámeních %s" - -#~ msgid "All subscriptions" -#~ msgstr "Všechny odběry" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Lidé" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Lidé přihlášení k %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 6a0da6b66e..df0fb211e8 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -22,17 +22,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:19+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -126,7 +126,7 @@ msgstr "Zugangs-Einstellungen speichern" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -163,9 +163,11 @@ msgstr "Nicht angemeldet." msgid "No such profile." msgstr "Profil nicht gefunden." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Tag nicht vorhanden." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -187,7 +189,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Abonniert" @@ -631,7 +633,7 @@ msgstr "Der bürgerliche Name ist zu lang (maximal 255 Zeichen)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2284,7 +2286,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Ungültiges Stichwort: „%s“" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Einstellungen gespeichert." @@ -2307,11 +2309,6 @@ msgstr "Ungültiger Personen-Tag: „%s“." msgid "No tagger or ID." msgstr "Kein Benutzername oder ID" -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Tag nicht vorhanden." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Kein lokaler Benutzer." @@ -4164,26 +4161,26 @@ msgstr "" msgid "People search" msgstr "Suche nach anderen Benutzern" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Öffentliche Zeitleiste, Seite %d" +msgid "Public list %s" +msgstr "Öffentliche Tag-Wolke" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Antworten an %1$s, Seite %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [Mikroblogging]" "(http://de.wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien " @@ -4306,10 +4303,12 @@ msgstr "" "Bis jetzt hat noch niemand eine Nachricht mit dem Tag „[hashtag](%%doc.tags%" "%)“ gepostet." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Mit „%1$s“ getaggte Nachrichten, Seite %2$d" @@ -4330,25 +4329,25 @@ msgstr "" "Software [StatusNet](http://status.net/). Seine Mitglieder erstellen kurze " "Nachrichten über ihr Leben und Interessen. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" "Bis jetzt hat noch niemand eine Nachricht mit dem Tag „[hashtag](%%doc.tags%" "%)“ gepostet." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "%s abboniert." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten, Seite %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4740,49 +4739,49 @@ msgstr "" "Mikroblogging)-Dienst basierend auf der freien Software [StatusNet](http://" "status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Öffentliche Tag-Wolke" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Das sind die beliebtesten Tags auf „%s“" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" "Bis jetzt hat noch niemand eine Nachricht mit dem Tag „[hashtag](%%doc.tags%" "%)“ gepostet." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Sei der erste, der etwas schreibt!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Warum [registrierst du nicht einen Account](%%%%action.register%%%%) und " "bist der erste der eine Nachricht abschickt!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Öffentliche Tag-Wolke" +msgid "List cloud" +msgstr "API-Methode nicht gefunden." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5167,7 +5166,7 @@ msgstr "Profil-URL bei einem anderen kompatiblen Mikrobloggingdienst" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5199,7 +5198,21 @@ msgstr "Konnte keinen Anfrage-Token bekommen." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Du hast dieses OMB 0.1 Profil nicht abonniert." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5394,10 +5407,10 @@ msgstr "Du kannst Benutzer auf dieser Seite nicht auf den Spielplaz schicken." msgid "User is already sandboxed." msgstr "Benutzer ist schon blockiert." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Ungültiger Personen-Tag: „%s“." #. TRANS: Page title for page showing self tags. @@ -5692,19 +5705,19 @@ msgid "Notice deleted." msgstr "Nachricht gelöscht." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Benutzer, die sich selbst mit „%1$s“ getaggt haben - Seite %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Benutzer, die sich selbst mit „%1$s“ getaggt haben - Seite %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten, Seite %3$d" @@ -5743,11 +5756,11 @@ msgstr "" "Dies ist die Zeitleiste von %s und Freunden, aber bisher hat niemand etwas " "gepostet." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5762,7 +5775,7 @@ msgstr "" msgid "Listed" msgstr "Lizenz" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6289,7 +6302,7 @@ msgstr "Du hast dieses OMB 0.1 Profil nicht abonniert." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6297,16 +6310,16 @@ msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." msgid "No ID given." msgstr "Kein ID-Argument." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s Abonnenten, Seite %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6448,42 +6461,43 @@ msgstr "Nachrichten-Feed des Tags „%s“ (Atom)" msgid "You cannot tag this user." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Benutzerprofil" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Tag „%s“" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Limit" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Ajax-Fehler" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Benutzerprofil" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Benutzer taggen" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Limit" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Tags" +msgid "Lists" +msgstr "Limit" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " @@ -6495,13 +6509,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Tags" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Passwort gespeichert." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Benutze dieses Formular, um Tags deinen Abonnenten oder Abonnements " "hinzuzufügen." @@ -6526,10 +6541,10 @@ msgstr "Der Benutzer ist nicht ruhig gestellt." msgid "Unsubscribed" msgstr "Abbestellt" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s Abonnenten, Seite %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7231,21 +7246,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Konnte Abonnement nicht löschen." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Konnte Abonnement nicht löschen." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7865,7 +7880,7 @@ msgid "Cancel" msgstr "Abbrechen" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Speichern" @@ -7914,14 +7929,14 @@ msgid "Do not use this method!" msgstr "Diese Gruppe nicht löschen" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Antworten an %1$s auf %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" #. TRANS: Title. @@ -9597,15 +9612,15 @@ msgstr "Konnte neues Abonnement nicht eintragen." msgid "No oEmbed API endpoint available." msgstr "IM ist nicht verfügbar." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Tag" +msgid "List" +msgstr "Links" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Tags dieses Benutzers (Buchstaben, Nummer, -, ., und _), durch Komma oder " "Leerzeichen getrennt" @@ -9628,11 +9643,11 @@ msgstr[1] "Beschreibe die Gruppe oder das Thema in %d Zeichen" msgid "Delete this list." msgstr "Diesen Benutzer löschen." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9669,7 +9684,7 @@ msgstr "Abonnenten" msgid "Subscribers to %1$s list by %2$s." msgstr "%s abboniert." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9695,7 +9710,7 @@ msgstr "Profil-Einstellungen ändern" msgid "Edit" msgstr "Bearbeiten" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9708,48 +9723,57 @@ msgid "List Subscriptions" msgstr "Abonnements" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "%s abboniert." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Aktualisierungen mit „%s“" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Aktualisierungen mit „%s“" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s – %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Beliebte Nachrichten" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Bearbeiten" +msgid "Edit lists" +msgstr "Ungültiger Personen-Tag: „%s“." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Tags" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9762,11 +9786,12 @@ msgstr "Beliebte Nachrichten" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s Abonnenten, Seite %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "API-Methode nicht gefunden." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10401,16 +10426,16 @@ msgid "Choose a field to search." msgstr "Wähle ein Tag, um die Liste einzuschränken" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s – %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s – %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10472,7 +10497,7 @@ msgid "Unsubscribe from this user" msgstr "Abonnement von diesem Benutzer abbestellen" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10561,87 +10586,45 @@ msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." +#~ msgid "No such people tag." +#~ msgstr "Tag nicht vorhanden." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Konnte Gruppe nicht aktualisieren." +#~ msgid "Public people tag %s" +#~ msgstr "Öffentliche Zeitleiste, Seite %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Antworten von %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Öffentliche Tag-Wolke" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Antworten an %1$s, Seite %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Das sind die beliebtesten Tags auf „%s“" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Antworten von %s" +#~ msgid "People tag cloud" +#~ msgstr "Öffentliche Tag-Wolke" + +#~ msgid "Tag %s" +#~ msgstr "Tag „%s“" + +#~ msgid "Tag user" +#~ msgstr "Benutzer taggen" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Antworten an %1$s, Seite %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problem bei Speichern der Nachricht." - -#~ msgid "Groups with most members" -#~ msgstr "Gruppen mit den meisten Mitgliedern" - -#~ msgid "Groups with most posts" -#~ msgstr "Gruppen mit den meisten Beiträgen" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Beschreibe die Gruppe oder das Thema" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Diese Gruppe löschen" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Leute" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Tag" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Profil-Einstellungen ändern" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Bearbeiten" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Leute, die „%s“ abonniert hat" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s – %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Alle Abonnements" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Leute" - -#~ msgid "User" -#~ msgstr "Benutzer" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Tags in den Nachrichten von „%s“" - -#~ msgid "All subscriptions" -#~ msgstr "Alle Abonnements" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Leute" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Leute, die „%s“ abonniert haben" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index c82c46a0e0..2ab48b1381 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:21+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -117,7 +117,7 @@ msgstr "Save access settings" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -154,9 +154,11 @@ msgstr "Not logged in." msgid "No such profile." msgstr "No such profile." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "No such tag." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -178,7 +180,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Subscribed" @@ -618,7 +620,7 @@ msgstr "Full name is too long (max 255 chars)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2279,7 +2281,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Invalid alias: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Options saved." @@ -2302,11 +2304,6 @@ msgstr "Not a valid people tag: %s." msgid "No tagger or ID." msgstr "No nickname or ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "No such tag." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "No such user." @@ -4143,26 +4140,26 @@ msgstr "" msgid "People search" msgstr "People search" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Public timeline, page %d" +msgid "Public list %s" +msgstr "Public tag cloud" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Replies to %1$s, page %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " @@ -4283,10 +4280,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Notices tagged with %1$s, page %2$d" @@ -4307,23 +4306,23 @@ msgstr "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Replies to %1$s on %2$s!" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Notices tagged with %1$s, page %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4704,46 +4703,46 @@ msgstr "" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Public tag cloud" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "These are most popular recent tags on %s " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. -msgid "Be the first to tag someone!" +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +msgid "Be the first to list someone!" msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Public tag cloud" +msgid "List cloud" +msgstr "API method not found." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5120,7 +5119,7 @@ msgstr "URL of your profile on another compatible microblogging service" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5151,7 +5150,21 @@ msgstr "Couldn’t get a request token." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "You cannot subscribe to an OMB 0.1 remote profile with this action." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5338,10 +5351,10 @@ msgstr "You cannot sandbox users on this site." msgid "User is already sandboxed." msgstr "User is already sandboxed." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Not a valid people tag: %s." #. TRANS: Page title for page showing self tags. @@ -5632,19 +5645,19 @@ msgid "Notice deleted." msgstr "Notice deleted." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Users self-tagged with %1$s - page %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Users self-tagged with %1$s - page %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Notices tagged with %1$s, page %2$d" @@ -5682,11 +5695,11 @@ msgid "" msgstr "" "This is the timeline for %s and friends but no one has posted anything yet." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5701,7 +5714,7 @@ msgstr "" msgid "Listed" msgstr "License" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6207,7 +6220,7 @@ msgstr "You cannot subscribe to an OMB 0.1 remote profile with this action." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "You must be logged in to create a group." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6215,16 +6228,16 @@ msgstr "You must be logged in to create a group." msgid "No ID given." msgstr "No ID argument." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Could not join user %1$s to group %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s subscribers, page %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6362,42 +6375,43 @@ msgstr "Notice feed for tag %s (Atom)" msgid "You cannot tag this user." msgstr "You can't send a message to this user." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "User profile" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Tag %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Links" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Ajax Error" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "User profile" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Tag user" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Links" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Tags" +msgid "Lists" +msgstr "Links" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" @@ -6408,13 +6422,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Tags" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Password saved." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "Use this form to add tags to your subscribers or subscriptions." #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6437,10 +6452,10 @@ msgstr "User is not silenced." msgid "Unsubscribed" msgstr "Unsubscribed" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s subscribers, page %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7121,21 +7136,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Could not delete subscription." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Could not delete subscription." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7749,7 +7764,7 @@ msgid "Cancel" msgstr "Cancel" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Save" @@ -7797,14 +7812,14 @@ msgid "Do not use this method!" msgstr "Do not delete this group" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Replies to %1$s on %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Updates from %1$s on %2$s!" #. TRANS: Title. @@ -9382,15 +9397,15 @@ msgstr "Couldn't insert new subscription." msgid "No oEmbed API endpoint available." msgstr "IM is not available." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Tag" +msgid "List" +msgstr "Links" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -9413,11 +9428,11 @@ msgstr[1] "Describe the group or topic in %d characters" msgid "Delete this list." msgstr "Delete this user" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9454,7 +9469,7 @@ msgstr "Subscribers" msgid "Subscribers to %1$s list by %2$s." msgstr "Replies to %1$s on %2$s!" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9480,7 +9495,7 @@ msgstr "Edit profile settings" msgid "Edit" msgstr "Edit" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9493,48 +9508,57 @@ msgid "List Subscriptions" msgstr "Subscriptions" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "People subscribed to %s" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Updates with \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Updates with \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Popular notices" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Edit" +msgid "Edit lists" +msgstr "Not a valid people tag: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Tags" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9547,11 +9571,12 @@ msgstr "Popular notices" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s subscribers, page %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "API method not found." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10178,16 +10203,16 @@ msgid "Choose a field to search." msgstr "Choose a tag to narrow list" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10250,7 +10275,7 @@ msgid "Unsubscribe from this user" msgstr "Unsubscribe from this user" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10340,87 +10365,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Use this form to edit the group." +#~ msgid "No such people tag." +#~ msgstr "No such tag." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Could not update group." +#~ msgid "Public people tag %s" +#~ msgstr "Public timeline, page %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Repeats of %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Public tag cloud" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Replies to %1$s, page %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "These are most popular recent tags on %s " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Repeats of %s" +#~ msgid "People tag cloud" +#~ msgstr "Public tag cloud" + +#~ msgid "Tag %s" +#~ msgstr "Tag %s" + +#~ msgid "Tag user" +#~ msgstr "Tag user" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Replies to %1$s, page %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problem saving group inbox." - -#~ msgid "Groups with most members" -#~ msgstr "Groups with most members" - -#~ msgid "Groups with most posts" -#~ msgstr "Groups with most posts" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Describe the group or topic" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Delete this group" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "People" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Tag" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Edit profile settings" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Edit" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "People %s subscribes to" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "All subscriptions" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "People" - -#~ msgid "User" -#~ msgstr "User" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Tags in %s's notices" - -#~ msgid "All subscriptions" -#~ msgstr "All subscriptions" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "People" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "People subscribed to %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 8961403e2b..38a789416b 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:22+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -120,7 +120,7 @@ msgstr "Konservi atingan agordon" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -157,9 +157,11 @@ msgstr "Ne konektita." msgid "No such profile." msgstr "Ne ekzistas tia profilo." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Ne estas tiu etikedo." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -181,7 +183,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Abonita" @@ -619,7 +621,7 @@ msgstr "Kompleta nomo tro longas (maksimume 255 signoj)" #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2269,7 +2271,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Nevalida alinomo: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Elektoj konserviĝis." @@ -2292,11 +2294,6 @@ msgstr "Ne valida persona markilo: %s." msgid "No tagger or ID." msgstr "Ne estas alinomo aŭ ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Ne estas tiu etikedo." - #. TRANS: Client error displayed when referring to non-local user. #, fuzzy msgid "Not a local user." @@ -4112,26 +4109,26 @@ msgstr "" msgid "People search" msgstr "Persona serĉado" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Publika tempstrio, paĝo %d" +msgid "Public list %s" +msgstr "Publika markil-nubo" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Respondoj al %1$s, paĝo %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** estas grupo de uzantoj ĉe %%%%*site.*name%%%%, [mikrobloga servo]" "(*http://estas.*wikipedia.*org/*wiki/*Microblogging) baze de ilaro de Libera " @@ -4252,10 +4249,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "Neniu jam afiŝis avizon kun [haketentikedon](%%doc.tags%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" @@ -4276,23 +4275,23 @@ msgstr "" "Molvaro [StatusNet](*http://*status.*net/), kie anoj konigas mesaĝetojn pri " "siaj vivoj kaj ŝatokupoj. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "Neniu jam afiŝis avizon kun [haketentikedon](%%doc.tags%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "%s abonita" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4673,45 +4672,45 @@ msgstr "" "blogging) servo surbaze de libera servila programo [StatusNet](http://status." "net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Publika markil-nubo" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Jen la plej popularaj entikedoj lastatempaj ĉe %s " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Neniu jam afiŝis avizon kun [haketentikedon](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Estu la unua afiŝanto!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "Kial ne [krei konton](%%action.register%%) kaj esti la unua afiŝanto!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Publika markil-nubo" +msgid "List cloud" +msgstr "Listo ne ekzistas." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5087,7 +5086,7 @@ msgstr "URL de via profilo ĉe alia kongrua mikroblogilo-servo" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5119,7 +5118,21 @@ msgstr "Malsukcesis akiri pet-ĵetonon." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Vi ne povas aboni foran OMB 0.1-an profilon per ĉi tiu ago." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5312,10 +5325,10 @@ msgstr "Vi ne rajtas provejigi uzantojn ĉe tiu ĉi retejo." msgid "User is already sandboxed." msgstr "La uzanto jam provejiĝis." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Ne valida persona markilo: %s." #. TRANS: Page title for page showing self tags. @@ -5605,19 +5618,19 @@ msgid "Notice deleted." msgstr "Avizo viŝiĝas" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Uzantoj sinmarkitaj per %1$s - paĝo %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Uzantoj sinmarkitaj per %1$s - paĝo %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Avizoj etikeditaj per %1$s - paĝo %2$d" @@ -5655,11 +5668,11 @@ msgid "" msgstr "" "Tie ĉi estas la tempstrio de %s kaj amikoj sed ankoraŭ neniu afiŝis ion ajn." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5672,7 +5685,7 @@ msgstr "Kial ne [krei konton](%%action.register%%) kaj esti la unua afiŝanto!" msgid "Listed" msgstr "Licenco" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6190,7 +6203,7 @@ msgstr "Vi ne povas aboni foran OMB 0.1-an profilon per ĉi tiu ago." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Ensalutu por krei grupon." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6198,16 +6211,16 @@ msgstr "Ensalutu por krei grupon." msgid "No ID given." msgstr "Neniu ID-argumento" -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "La uzanto %1$*s ne povas aliĝi al la grupo %2$*s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s abonantoj, paĝo %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6347,42 +6360,43 @@ msgstr "Avizofluo pri etikedo %s (Atom)" msgid "You cannot tag this user." msgstr "Vi ne povas sendi mesaĝon al tiu uzanto." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Uzanta profilo" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Etikedo %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Limoj" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Eraro de Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Uzanta profilo" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Etikedi uzanton" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Limoj" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Markiloj" +msgid "Lists" +msgstr "Limoj" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Markiloj por vi mem (literoj, ciferoj, \"-\", \".\", kaj \"_\"), dividite " @@ -6394,13 +6408,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Markiloj" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Pasvorto konservitas." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "Uzu ĉi tiun formularon por etikedi viajn abonantojn aŭ abonatojn." #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6423,10 +6438,10 @@ msgstr "Uzanto ne estas silentigita." msgid "Unsubscribed" msgstr "Malabonita" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s abonantoj, paĝo %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7109,21 +7124,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Malsukcesis forigi abonon." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Malsukcesis forigi abonon." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7743,7 +7758,7 @@ msgid "Cancel" msgstr "Nuligi" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Konservi" @@ -7791,14 +7806,14 @@ msgid "Do not use this method!" msgstr "Ne uzu ĉi tiun metodon!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Respondoj al %1$s ĉe %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Ĝisdatiĝoj de %1$s ĉe %2$s!" #. TRANS: Title. @@ -9467,15 +9482,15 @@ msgstr "Eraris enmeti novan abonon." msgid "No oEmbed API endpoint available." msgstr "Tujmesaĝilo ne estas disponebla." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Etikedo" +msgid "List" +msgstr "Ligiloj" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Etikedoj por ĉi tiuj uzanto (literoj, ciferoj, -, . Kaj _), apartigu per " "komo aŭ spaco." @@ -9498,11 +9513,11 @@ msgstr[1] "Priskribo de grupo aŭ temo, apenaŭ je %d literoj" msgid "Delete this list." msgstr "Forigi la uzanton" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9539,7 +9554,7 @@ msgstr "Abonantoj" msgid "Subscribers to %1$s list by %2$s." msgstr "%s abonita" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9565,7 +9580,7 @@ msgstr "Redakti profilan agordon" msgid "Edit" msgstr "Redakti" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9578,48 +9593,57 @@ msgid "List Subscriptions" msgstr "Abonatoj" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "%s abonita" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Ĝisdatiĝo enhavante \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Ĝisdatiĝo enhavante \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Popularaj avizoj" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Redakti" +msgid "Edit lists" +msgstr "Ne valida persona markilo: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Markiloj" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9632,11 +9656,12 @@ msgstr "Popularaj avizoj" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s abonantoj, paĝo %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Listo ne ekzistas." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10269,16 +10294,16 @@ msgid "Choose a field to search." msgstr "" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10341,7 +10366,7 @@ msgid "Unsubscribe from this user" msgstr "Malaboni la uzanton" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10431,87 +10456,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Uzas ĉi tiun formularon por redakti la grupon." +#~ msgid "No such people tag." +#~ msgstr "Ne estas tiu etikedo." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Malsukcesis ĝisdatigi grupon." +#~ msgid "Public people tag %s" +#~ msgstr "Publika tempstrio, paĝo %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Ripetoj de %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Publika markil-nubo" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Respondoj al %1$s, paĝo %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Jen la plej popularaj entikedoj lastatempaj ĉe %s " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Ripetoj de %s" +#~ msgid "People tag cloud" +#~ msgstr "Publika markil-nubo" + +#~ msgid "Tag %s" +#~ msgstr "Etikedo %s" + +#~ msgid "Tag user" +#~ msgstr "Etikedi uzanton" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Respondoj al %1$s, paĝo %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Malsukcesis konservi grupan alvenkeston." - -#~ msgid "Groups with most members" -#~ msgstr "Grupoj kun plej multe da membroj" - -#~ msgid "Groups with most posts" -#~ msgstr "Grupoj kun plej multe da avizoj" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Priskribo de grupo aŭ temo" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Forigi ĉi tiun grupon." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Homoj" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Etikedo" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Redakti profilan agordon" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Redakti" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Abonatoj de %s" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Ĉiuj abonatoj" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Homoj" - -#~ msgid "User" -#~ msgstr "Uzanto" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Etikedoj en avizoj de %s" - -#~ msgid "All subscriptions" -#~ msgstr "Ĉiuj abonatoj" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Homoj" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Abonantoj de %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 77b7cfc08d..98d3ae9835 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -122,7 +122,7 @@ msgstr "Guardar la configuración de acceso" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -160,9 +160,11 @@ msgstr "No conectado." msgid "No such profile." msgstr "No existe tal perfil." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "No existe tal etiqueta." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -184,7 +186,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Suscrito" @@ -621,7 +623,7 @@ msgstr "Nombre demasiado largo (max. 255 carac.)" #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2272,7 +2274,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Alias inválido: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Se guardó Opciones." @@ -2295,11 +2297,6 @@ msgstr "No es una etiqueta válida para personas: %s." msgid "No tagger or ID." msgstr "Ningún nombre de usuario o ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "No existe tal etiqueta." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "No existe ese usuario." @@ -4150,26 +4147,26 @@ msgstr "" msgid "People search" msgstr "Buscador de gente" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Línea temporal pública, página %d" +msgid "Public list %s" +msgstr "Nube de etiquetas pública" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Respuestas a %1$s, página %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio de " "[microblogueo](http://es.wikipedia.org/wiki/Microblogging) basado en la " @@ -4291,10 +4288,12 @@ msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" "Aún nadie ha publicado un mensaje con una [etiqueta clave](%%doc.tags%%)" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Mensajes etiquetados con %1$s, página %2$d" @@ -4315,24 +4314,24 @@ msgstr "" "herramienta de software libre [StatusNet](http://status.net/). Sus miembros " "comparten mensajes cortos acerca de su vida e intereses. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" "Aún nadie ha publicado un mensaje con una [etiqueta clave](%%doc.tags%%)" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Suscrito a %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Mensajes etiquetados con %1$s, página %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4718,48 +4717,48 @@ msgstr "" "org/wiki/Microblogging) basada en la herramienta de software libre " "[StatusNet](http://status.net/) tool." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Nube de etiquetas pública" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Estas son las etiquetas recientes más populares en %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" "Aún nadie ha publicado un mensaje con una [etiqueta clave](%%doc.tags%%)" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "¡Sé la primera persona en publicar!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "¿Por qué no [registras una cuenta](%%action.register%%) y te conviertes en " "la primera persona en publicar uno?" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Nube de etiquetas pública" +msgid "List cloud" +msgstr "Método de API no encontrado." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5142,7 +5141,7 @@ msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5175,7 +5174,21 @@ msgstr "No se pudo obtener un token de solicitud" msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "No puedes suscribirte a un perfil remoto 0.1 de OMB con esta acción." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5366,10 +5379,10 @@ msgstr "No puedes imponer restricciones a los usuarios en este sitio." msgid "User is already sandboxed." msgstr "Al usuario ya se le ha impuesto restricciones." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "No es una etiqueta válida para personas: %s." #. TRANS: Page title for page showing self tags. @@ -5664,19 +5677,19 @@ msgid "Notice deleted." msgstr "Mensaje borrado" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Usuarios auto etiquetados con %1$s - página %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Usuarios auto etiquetados con %1$s - página %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Mensajes etiquetados con %1$s, página %2$d" @@ -5715,11 +5728,11 @@ msgstr "" "Esta es la línea temporal de %s y amistades, pero nadie ha publicado nada " "todavía." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5734,7 +5747,7 @@ msgstr "" msgid "Listed" msgstr "Licencia" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6262,7 +6275,7 @@ msgstr "No puedes suscribirte a un perfil remoto 0.1 de OMB con esta acción." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Debes estar conectado para crear un grupo" #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6270,16 +6283,16 @@ msgstr "Debes estar conectado para crear un grupo" msgid "No ID given." msgstr "No existe argumento de ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "No se pudo unir el usuario %s al grupo %s" -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s suscriptores, página %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6422,42 +6435,43 @@ msgstr "Canal de mensajes con etiqueta %s (Atom)" msgid "You cannot tag this user." msgstr "No puedes enviar mensaje a este usuario." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Perfil de usuario" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "%s etiqueta" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Límites" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Error de Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Perfil de usuario" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Etiquetar usuario" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Límites" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Etiquetas" +msgid "Lists" +msgstr "Límites" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Etiquetas para ti (letras, números, -, ., y _), separadas por comas o " @@ -6469,13 +6483,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Etiquetas" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Se guardó la contraseña." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Usa este formulario para agregar etiquetas a tus suscriptores o " "suscripciones." @@ -6500,10 +6515,10 @@ msgstr "El usuario no ha sido silenciado." msgid "Unsubscribed" msgstr "Desuscrito" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s suscriptores, página %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7196,21 +7211,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "No se pudo eliminar la suscripción." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "No se pudo eliminar la suscripción." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7835,7 +7850,7 @@ msgid "Cancel" msgstr "Cancelar" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Guardar" @@ -7883,14 +7898,14 @@ msgid "Do not use this method!" msgstr "No eliminar este mensaje" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Respuestas a %1$s en %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" #. TRANS: Title. @@ -9576,15 +9591,15 @@ msgstr "No se pudo insertar una nueva suscripción." msgid "No oEmbed API endpoint available." msgstr "La mensajería instantánea no está disponible." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Etiqueta" +msgid "List" +msgstr "Vínculos" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Etiquetas para este usuario (letras, números, -, ., y _), separadas por " "comas o espacios" @@ -9607,11 +9622,11 @@ msgstr[1] "Describir al grupo o tema en %d caracteres" msgid "Delete this list." msgstr "Borrar este usuario" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9648,7 +9663,7 @@ msgstr "Suscriptores" msgid "Subscribers to %1$s list by %2$s." msgstr "Suscrito a %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9674,7 +9689,7 @@ msgstr "Editar configuración del perfil" msgid "Edit" msgstr "Editar" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9687,48 +9702,57 @@ msgid "List Subscriptions" msgstr "Suscripciones" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Suscrito a %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Actualizaciones con \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Actualizaciones con \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Mensajes populares" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Editar" +msgid "Edit lists" +msgstr "No es una etiqueta válida para personas: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Etiquetas" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9741,11 +9765,12 @@ msgstr "Mensajes populares" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s suscriptores, página %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Método de API no encontrado." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10383,16 +10408,16 @@ msgid "Choose a field to search." msgstr "Elegir una etiqueta para reducir la lista" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10454,7 +10479,7 @@ msgid "Unsubscribe from this user" msgstr "Desuscribirse de este usuario" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10544,87 +10569,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Usa este formulario para editar el grupo." +#~ msgid "No such people tag." +#~ msgstr "No existe tal etiqueta." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "No se pudo actualizar el grupo." +#~ msgid "Public people tag %s" +#~ msgstr "Línea temporal pública, página %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Repeticiones de %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Nube de etiquetas pública" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Respuestas a %1$s, página %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Estas son las etiquetas recientes más populares en %s" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Repeticiones de %s" +#~ msgid "People tag cloud" +#~ msgstr "Nube de etiquetas pública" + +#~ msgid "Tag %s" +#~ msgstr "%s etiqueta" + +#~ msgid "Tag user" +#~ msgstr "Etiquetar usuario" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Respuestas a %1$s, página %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Hubo un problema al guarda la bandeja de entrada del grupo." - -#~ msgid "Groups with most members" -#~ msgstr "Grupos con mayor cantidad de miembros" - -#~ msgid "Groups with most posts" -#~ msgstr "Grupos con mayor cantidad de publicaciones" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Describir al grupo o tema" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Eliminar este grupo." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Gente" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Etiqueta" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Editar configuración del perfil" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Editar" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Personas a las que %s está suscrito" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Todas las suscripciones" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Gente" - -#~ msgid "User" -#~ msgstr "Usuario" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Etiquetas en mensajes de %s" - -#~ msgid "All subscriptions" -#~ msgstr "Todas las suscripciones" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Gente" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Personas suscritas a %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index ddce7c2577..9a3f838ebe 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:25+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -28,9 +28,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -123,7 +123,7 @@ msgstr "ذخیرهٔ تنظیمات دسترسی" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -160,9 +160,11 @@ msgstr "شما به سیستم وارد نشده اید." msgid "No such profile." msgstr "چنین نمایه‌ای وجود ندارد." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "چنین برچسبی وجود ندارد." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -184,7 +186,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "مشترک‌شده" @@ -615,7 +617,7 @@ msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نوی #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2270,7 +2272,7 @@ msgid "Invalid alias: \"%s\"" msgstr "نام‌مستعار غیر مجاز: «%s»" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "گزینه‌ها ذخیره شدند." @@ -2293,11 +2295,6 @@ msgstr "یک برچسب کاربری معتبر نیست: %s." msgid "No tagger or ID." msgstr "نام‌مستعار یا شناسه‌ای وجود ندارد." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "چنین برچسبی وجود ندارد." - #. TRANS: Client error displayed when referring to non-local user. #, fuzzy msgid "Not a local user." @@ -4147,26 +4144,26 @@ msgstr "" msgid "People search" msgstr "جست‌وجوی کاربران" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "خط‌زمانی عمومی، صفحهٔ %d" +msgid "Public list %s" +msgstr "ابر برچسب عمومی" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "پاسخ‌های به %1$s، صفحهٔ %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** یک گروه کاربری در %%%%site.name%%%%، یک سرویس [میکروبلاگینگ](http://" "fa.wikipedia.org/wiki/%D9%85%DB%8C%DA%A9%D8%B1%D9%88%D8%A8%D9%84%D8%A7%DA%AF%" @@ -4289,10 +4286,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "هیچ‌کس هنوز پیامی با یک [برچسب](%%doc.tags%%) نفرستاده است." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "پیام‌های برچسب‌دار شده با %1$s، صفحهٔ %2$d" @@ -4314,23 +4313,23 @@ msgstr "" "است. کاربران آن پیام‌های کوتاهی را دربارهٔ زندگی و علاقه‌مندی‌هایشان به اشتراک " "می‌گذارند. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "هیچ‌کس هنوز پیامی با یک [برچسب](%%doc.tags%%) نفرستاده است." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "پاسخ‌های به %1$s در %2$s!" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "پیام‌های برچسب‌دار شده با %1$s، صفحهٔ %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4711,47 +4710,47 @@ msgstr "" "85%DB%8C%DA%A9%D8%B1%D9%88%D8%A8%D9%84%D8%A7%DA%AF%DB%8C%D9%86%DA%AF) بر " "پایهٔ نرم‌افزار آزاد [StatusNet](http://status.net/) است." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "ابر برچسب عمومی" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "این‌ها محبوب‌ترین برچسب‌های اخیر روی %s هستند " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "هیچ‌کس هنوز پیامی با یک [برچسب](%%doc.tags%%) نفرستاده است." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "اولین نفری باشید که چیزی می‌فرستد!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "چرا به [باز کردن یک حساب](%%action.register%%) اقدام نمی‌کنید و اولین نفری " "باشید که چیزی می‌فرستد!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "ابر برچسب عمومی" +msgid "List cloud" +msgstr "رابط مورد نظر پیدا نشد." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" #. TRANS: Public RSS feed description. %s is the StatusNet site name. @@ -5132,7 +5131,7 @@ msgstr "نشانی اینترنتی نمایهٔ شما در سرویس میکر #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5165,7 +5164,21 @@ msgstr "نمی‌توان یک نشانهٔ درخواست را به‌دست آ msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "نمی‌توان با این کار مشترک یک نمایهٔ از راه دور OMB 0.1شد." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5354,10 +5367,10 @@ msgstr "شما نمی توانید کاربری را در این سایت ساک msgid "User is already sandboxed." msgstr "کاربر قبلا ساکت شده است." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "یک برچسب کاربری معتبر نیست: %s." #. TRANS: Page title for page showing self tags. @@ -5654,19 +5667,19 @@ msgid "Notice deleted." msgstr "پیام پاک شد." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "کاربران خود برچسب‌گذاری شده با %1$s - صفحهٔ %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "کاربران خود برچسب‌گذاری شده با %1$s - صفحهٔ %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "پیام‌های برچسب‌دار شده با %1$s، صفحهٔ %2$d" @@ -5703,11 +5716,11 @@ msgid "" "yet." msgstr "این خط‌زمانی %s و دوستانش است، اما هیچ‌یک تاکنون چیزی نفرستاده‌اند." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5722,7 +5735,7 @@ msgstr "" msgid "Listed" msgstr "مجوز" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6244,7 +6257,7 @@ msgstr "نمی‌توان با این کار مشترک یک نمایهٔ از #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "برای ساخت یک گروه، باید وارد شده باشید." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6252,16 +6265,16 @@ msgstr "برای ساخت یک گروه، باید وارد شده باشید." msgid "No ID given." msgstr "هیچ پیوستی وجود ندارد." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "نمی‌توان کاربر %1$s را عضو گروه %2$s کرد." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "مشترک‌های %1$s، صفحهٔ %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6405,42 +6418,43 @@ msgstr "خوراک پیام برای برچسب %s (Atom)" msgid "You cannot tag this user." msgstr "شما نمی توانید به این کاربر پیام بفرستید." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "نمایهٔ کاربر" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "برچسب %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "محدودیت ها" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "خطای آژاکس" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "نمایهٔ کاربر" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "برچسب‌گذاری کاربر" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "محدودیت ها" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "برچسب‌ها" +msgid "Lists" +msgstr "محدودیت ها" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "برچسب‌ها برای خودتان (حروف، اعداد، -، .، و _) جدا شده با کاما- یا فاصله-" @@ -6451,13 +6465,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "برچسب‌ها" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "گذرواژه ذخیره شد." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "از این روش برای افزودن برچسب به مشترک‌ها یا اشتراک‌هایتان استفاده کنید." #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6481,10 +6496,10 @@ msgstr "کاربر ساکت نشده است." msgid "Unsubscribed" msgstr "لغو اشتراک شده" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "مشترک‌های %1$s، صفحهٔ %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7165,21 +7180,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "نمی‌توان اشتراک را ذخیره کرد." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "نمی‌توان اشتراک را ذخیره کرد." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7799,7 +7814,7 @@ msgid "Cancel" msgstr "انصراف" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "ذخیره‌کردن" @@ -7847,14 +7862,14 @@ msgid "Do not use this method!" msgstr "این پیام را پاک نکن" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "پاسخ‌های به %1$s در %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "به روز رسانی‌های %1$s در %2$s" #. TRANS: Title. @@ -9523,15 +9538,15 @@ msgstr "نمی‌توان اشتراک تازه‌ای افزود." msgid "No oEmbed API endpoint available." msgstr "پیام‌رسان فوری در دسترس نیست." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "برچسب" +msgid "List" +msgstr "پیوندها" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "برچسب‌ها برای این کاربر (حروف، اعداد، -، .، و _)، جدا شده با کاما- یا فاصله-" @@ -9552,11 +9567,11 @@ msgstr[0] "گروه یا موضوع را در %d نویسه توصیف کنید" msgid "Delete this list." msgstr "این کاربر حذف شود." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9593,7 +9608,7 @@ msgstr "مشترک‌ها" msgid "Subscribers to %1$s list by %2$s." msgstr "پاسخ‌های به %1$s در %2$s!" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9619,7 +9634,7 @@ msgstr "ویرایش تنظیمات نمایه" msgid "Edit" msgstr "ویرایش" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9632,48 +9647,57 @@ msgid "List Subscriptions" msgstr "اشتراک‌ها" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "افراد مشترک %s" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "پیام‌های با %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "پیام‌های با %s" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s (%2$s)" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "پیام‌های برگزیده" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "ویرایش" +msgid "Edit lists" +msgstr "یک برچسب کاربری معتبر نیست: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "برچسب‌ها" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9686,11 +9710,12 @@ msgstr "پیام‌های برگزیده" msgid "Listed: %1$d Subscribers: %2$d" msgstr "مشترک‌های %1$s، صفحهٔ %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "رابط مورد نظر پیدا نشد." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10321,16 +10346,16 @@ msgid "Choose a field to search." msgstr "یک برچسب را برای محدود کردن فهرست انتخاب کنید" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s (%2$s)" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s (%2$s)" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10394,7 +10419,7 @@ msgid "Unsubscribe from this user" msgstr "لغو مشترک‌شدن از این کاربر" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10480,87 +10505,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "از این روش برای ویرایش گروه استفاده کنید." +#~ msgid "No such people tag." +#~ msgstr "چنین برچسبی وجود ندارد." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." +#~ msgid "Public people tag %s" +#~ msgstr "خط‌زمانی عمومی، صفحهٔ %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "تکرار %s" +#~ msgid "Public people tag cloud" +#~ msgstr "ابر برچسب عمومی" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "پاسخ‌های به %1$s، صفحهٔ %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "این‌ها محبوب‌ترین برچسب‌های اخیر روی %s هستند " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "تکرار %s" +#~ msgid "People tag cloud" +#~ msgstr "ابر برچسب عمومی" + +#~ msgid "Tag %s" +#~ msgstr "برچسب %s" + +#~ msgid "Tag user" +#~ msgstr "برچسب‌گذاری کاربر" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "پاسخ‌های به %1$s، صفحهٔ %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "هنگام ذخیرهٔ صندوق ورودی گروه مشکلی رخ داد." - -#~ msgid "Groups with most members" -#~ msgstr "گروه های با اعضاء بیشتر" - -#~ msgid "Groups with most posts" -#~ msgstr "گروه های با پست های بیشتر" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "گروه یا موضوع را توصیف کنید" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "حذف این کاربر" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "افراد" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "برچسب" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "ویرایش تنظیمات نمایه" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "ویرایش" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "افراد مشترک %s" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s (%2$s)" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "تمام اشتراک‌ها" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "افراد" - -#~ msgid "User" -#~ msgstr "کاربر" - -#~ msgid "Tags in %s's notices" -#~ msgstr "برچسب‌ها در پیام‌های %s" - -#~ msgid "All subscriptions" -#~ msgstr "تمام اشتراک‌ها" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "افراد" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "افراد مشترک %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 262a3cf79b..c47906f3d3 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:18+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:27+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -120,7 +120,7 @@ msgstr "Tallenna käyttöoikeusasetukset" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -159,9 +159,11 @@ msgstr "Et ole kirjautunut sisään." msgid "No such profile." msgstr "Profiilia ei löydy." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Tuota tagia ei ole." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -183,7 +185,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Tilattu" @@ -614,7 +616,7 @@ msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2230,7 +2232,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Virheellinen alias: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Asetukset tallennettu." @@ -2253,11 +2255,6 @@ msgstr "Tuo ei ole kelvollinen sähköpostiosoite." msgid "No tagger or ID." msgstr "Tunnusta tai ID:tä ei ole." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Tuota tagia ei ole." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Käyttäjää ei ole." @@ -4101,26 +4098,26 @@ msgstr "" msgid "People search" msgstr "Etsi ihmisiä" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Julkinen aikajana, sivu %d" +msgid "Public list %s" +msgstr "Julkinen tagipilvi" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Vastaukset käyttäjälle %s" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" @@ -4239,10 +4236,12 @@ msgstr "" "Kukaan ei ole vielä lähettänyt päivitystä tagilla [hashtag](%%doc.tags%%) " "vielä." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Päivitykset joilla on tagi %s" @@ -4261,25 +4260,25 @@ msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" "Kukaan ei ole vielä lähettänyt päivitystä tagilla [hashtag](%%doc.tags%%) " "vielä." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Viesti käyttäjälle %1$s, %2$s" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Päivitykset joilla on tagi %s" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4659,49 +4658,49 @@ msgstr "" "Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" "blogging)palvelu " -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Julkinen tagipilvi" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" "Kukaan ei ole vielä lähettänyt päivitystä tagilla [hashtag](%%doc.tags%%) " "vielä." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Ole ensimmäinen joka lähettää päivityksen!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." "newnotice%%%%?status_textarea=%s)!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Julkinen tagipilvi" +msgid "List cloud" +msgstr "API-metodia ei löytynyt." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5083,7 +5082,7 @@ msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5118,7 +5117,21 @@ msgstr "Ei saatu request tokenia." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5312,10 +5325,10 @@ msgstr "Et voi lähettää viestiä tälle käyttäjälle." msgid "User is already sandboxed." msgstr "Käyttäjä on asettanut eston sinulle." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." #. TRANS: Page title for page showing self tags. @@ -5595,19 +5608,19 @@ msgid "Notice deleted." msgstr "Päivitys on poistettu." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Käyttäjät joilla on henkilötagi %1$s - sivu %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Käyttäjät joilla on henkilötagi %1$s - sivu %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Päivitykset joilla on tagi %s" @@ -5646,11 +5659,11 @@ msgstr "" "Tämä on käyttäjän %s ja kavereiden aikajana, mutta kukaan ei ole lähettyänyt " "vielä mitään." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5665,7 +5678,7 @@ msgstr "" msgid "Listed" msgstr "Lisenssi" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6176,7 +6189,7 @@ msgstr "Et ole tilannut tämän käyttäjän päivityksiä." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6184,16 +6197,16 @@ msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." msgid "No ID given." msgstr "Ei id parametria." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Käyttäjä %1$s ei voinut liittyä ryhmään %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Käyttäjän %s tilaajat" #. TRANS: Header for list of subscribers for a user (first page). @@ -6326,42 +6339,43 @@ msgstr "Syöte ryhmän %s päivityksille (Atom)" msgid "You cannot tag this user." msgstr "Et voi lähettää viestiä tälle käyttäjälle." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Käyttäjän profiili" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Tagi %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Linkit" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Ajax-virhe" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Käyttäjän profiili" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Tagaa käyttäjä" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Linkit" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Tagit" +msgid "Lists" +msgstr "Linkit" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin " @@ -6373,13 +6387,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Tagit" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Salasana tallennettu." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Käytä tätä lomaketta lisätäksesi tageja tilaajillesi ja käyttäjille jotka " "tilaavat päivityksiäsi." @@ -6406,10 +6421,10 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "Unsubscribed" msgstr "Tilaus lopetettu" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Käyttäjän %s tilaajat" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7094,21 +7109,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Tilausta ei onnistuttu tallentamaan." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Tilausta ei onnistuttu tallentamaan." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7748,7 +7763,7 @@ msgid "Cancel" msgstr "Peruuta" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Tallenna" @@ -7797,14 +7812,14 @@ msgid "Do not use this method!" msgstr "Älä poista tätä päivitystä" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Viesti käyttäjälle %1$s, %2$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" #. TRANS: Title. @@ -9410,15 +9425,15 @@ msgstr "Ei voitu lisätä uutta tilausta." msgid "No oEmbed API endpoint available." msgstr "Pikaviestin ei ole käytettävissä." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Tagi" +msgid "List" +msgstr "Linkit" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Käyttäjän tagit (kirjaimet, numerot, -, ., ja _), pilkulla tai välilyönnillä " "erotettuna" @@ -9441,11 +9456,11 @@ msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" msgid "Delete this list." msgstr "Poista tämä käyttäjä." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9482,7 +9497,7 @@ msgstr "Tilaajat" msgid "Subscribers to %1$s list by %2$s." msgstr "Viesti käyttäjälle %1$s, %2$s" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" msgstr "" @@ -9507,7 +9522,7 @@ msgstr "Profiiliasetukset" msgid "Edit" msgstr "" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9520,48 +9535,57 @@ msgid "List Subscriptions" msgstr "Tilaukset" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s (%2$s)" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Suosituimmat päivitykset" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Viimeaikaiset tagit" +msgid "Edit lists" +msgstr "Tuo ei ole kelvollinen sähköpostiosoite." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Tagit" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9574,11 +9598,12 @@ msgstr "Suosituimmat päivitykset" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Käyttäjän %s tilaajat" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "API-metodia ei löytynyt." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10218,16 +10243,16 @@ msgid "Choose a field to search." msgstr "Valitse tagi lyhentääksesi listaa" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s (%2$s)" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s (%2$s)" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10292,7 +10317,7 @@ msgid "Unsubscribe from this user" msgstr "Peruuta tämän käyttäjän tilaus" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10382,87 +10407,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Käytä tätä lomaketta muokataksesi ryhmää." +#~ msgid "No such people tag." +#~ msgstr "Tuota tagia ei ole." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Ei voitu päivittää ryhmää." +#~ msgid "Public people tag %s" +#~ msgstr "Julkinen aikajana, sivu %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Toistot käyttäjältä %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Julkinen tagipilvi" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Vastaukset käyttäjälle %s" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Toistot käyttäjältä %s" +#~ msgid "People tag cloud" +#~ msgstr "Julkinen tagipilvi" + +#~ msgid "Tag %s" +#~ msgstr "Tagi %s" + +#~ msgid "Tag user" +#~ msgstr "Tagaa käyttäjä" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Vastaukset käyttäjälle %s" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Ongelma päivityksen tallentamisessa." - -#~ msgid "Groups with most members" -#~ msgstr "Ryhmät, joissa eniten jäseniä" - -#~ msgid "Groups with most posts" -#~ msgstr "Ryhmät, joissa eniten päivityksiä" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Poista tämä ryhmä." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Henkilö" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Tagi" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Profiiliasetukset" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Viimeaikaiset tagit" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Ihmiset joiden tilaaja %s on" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s (%2$s)" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Kaikki tilaukset" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Henkilö" - -#~ msgid "User" -#~ msgstr "Käyttäjä" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Tagit käyttäjän %s päivityksissä" - -#~ msgid "All subscriptions" -#~ msgstr "Kaikki tilaukset" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Henkilö" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index a5adfc33c8..710b0e89e6 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -23,17 +23,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:19+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -125,7 +125,7 @@ msgstr "Sauvegarder les paramètres d’accès" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -164,9 +164,11 @@ msgstr "Non connecté." msgid "No such profile." msgstr "Profil non-trouvé." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Cette marque n’existe pas." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -190,7 +192,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Abonné" @@ -632,7 +634,7 @@ msgstr "Le nom complet est trop long (limité à 255 caractères maximum)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2291,7 +2293,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Alias invalide : « %s »" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Vos options ont été enregistrées." @@ -2314,11 +2316,6 @@ msgstr "Cette marque est invalide : %s." msgid "No tagger or ID." msgstr "Aucun pseudo ou ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Cette marque n’existe pas." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Ceci n’est pas un utilisateur local." @@ -4173,26 +4170,26 @@ msgstr "" msgid "People search" msgstr "Recherche de personnes" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Flux public - page %d" +msgid "Public list %s" +msgstr "Nuage de marques public" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Réponses à %1$s, page %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** est un groupe d’utilisateurs sur %%%%site.name%%%%, un service de " "[micro-blogging](http://fr.wikipedia.org/wiki/Microblog) basé sur le " @@ -4314,10 +4311,12 @@ msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" "Personne n’a encore posté d’avis avec une [marque (hashtag)](%%doc.tags%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Avis marqués avec %1$s, page %2$d" @@ -4338,24 +4337,24 @@ msgstr "" "logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " "messages courts à propos de leur vie et leurs intérêts. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" "Personne n’a encore posté d’avis avec une [marque (hashtag)](%%doc.tags%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Abonné à %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "%1$s a marqué « %2$s » la page %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4741,48 +4740,48 @@ msgstr "" "%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" "wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Nuage de marques public" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Ces étiquettes récentes sont les plus populaires sur %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" "Personne n’a encore posté d’avis avec une [marque (hashtag)](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Soyez le premier à en poster une !" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Pourquoi ne pas [créer un compte](%%action.register%%) et être le premier à " "en poster un !" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Nuage de marques public" +msgid "List cloud" +msgstr "Page non trouvée." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5172,7 +5171,7 @@ msgstr "URL de votre profil sur un autre service de micro-blogging compatible" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5206,7 +5205,21 @@ msgstr "" "Vous ne pouvez pas vous abonner à un profil OMB 0.1 distant par cette " "action." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5400,10 +5413,10 @@ msgstr "" msgid "User is already sandboxed." msgstr "L’utilisateur est déjà dans le bac à sable." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Cette marque est invalide : %s." #. TRANS: Page title for page showing self tags. @@ -5701,19 +5714,19 @@ msgid "Notice deleted." msgstr "Avis supprimé." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Utilisateurs marqués par eux-mêmes avec %1$s - page %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Utilisateurs marqués par eux-mêmes avec %1$s - page %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "%1$s a marqué « %2$s » la page %3$d" @@ -5752,11 +5765,11 @@ msgstr "" "Ceci est le flux pour %s et ses amis mais personne n’a rien posté pour le " "moment." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5771,7 +5784,7 @@ msgstr "" msgid "Listed" msgstr "Licence" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6305,7 +6318,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Vous devez ouvrir une session pour créer un groupe." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6313,16 +6326,16 @@ msgstr "Vous devez ouvrir une session pour créer un groupe." msgid "No ID given." msgstr "Aucun argument d’identifiant." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Impossible d’inscrire l’utilisateur %1$s au groupe %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Abonnés à %1$s - page %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6465,42 +6478,43 @@ msgstr "Flux des avis pour la marque %s (Atom)" msgid "You cannot tag this user." msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Profil de l’utilisateur" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Marque %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Limites" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Erreur Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Profil de l’utilisateur" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Marquer l’utilisateur" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Limites" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Balises" +msgid "Lists" +msgstr "Limites" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des " @@ -6512,13 +6526,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Balises" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Mot de passe enregistré." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." @@ -6542,10 +6557,10 @@ msgstr "L’utilisateur n’est pas réduit au silence." msgid "Unsubscribed" msgstr "Désabonné" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Abonnés à %1$s - page %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7246,21 +7261,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Impossible de supprimer l’abonnement" -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Impossible de supprimer l’abonnement" #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7883,7 +7898,7 @@ msgid "Cancel" msgstr "Annuler" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Enregistrer" @@ -7932,14 +7947,14 @@ msgid "Do not use this method!" msgstr "Ne pas supprimer ce groupe" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Réponses à %1$s sur %2$s !" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Statuts de %1$s dans %2$s!" #. TRANS: Title. @@ -9630,15 +9645,15 @@ msgstr "Impossible d’insérer un nouvel abonnement." msgid "No oEmbed API endpoint available." msgstr "La messagerie instantanée n’est pas disponible." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Marque" +msgid "List" +msgstr "Liens" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Marques pour cet utilisateur (lettres, chiffres, -, ., et _), séparées par " "des virgules ou des espaces" @@ -9661,11 +9676,11 @@ msgstr[1] "Description du groupe ou du sujet, en %d caractères ou moins" msgid "Delete this list." msgstr "Supprimer cet utilisateur" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9702,7 +9717,7 @@ msgstr "Abonnés" msgid "Subscribers to %1$s list by %2$s." msgstr "Abonné à %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9728,7 +9743,7 @@ msgstr "Modifier les paramètres du profil" msgid "Edit" msgstr "Modifier" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9741,48 +9756,57 @@ msgid "List Subscriptions" msgstr "Abonnements" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Abonné à %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Mises à jour avec « %s »" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Mises à jour avec « %s »" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Avis populaires" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Modifier" +msgid "Edit lists" +msgstr "Cette marque est invalide : %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Balises" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9795,11 +9819,12 @@ msgstr "Avis populaires" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Abonnés à %1$s - page %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Page non trouvée." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10436,16 +10461,16 @@ msgid "Choose a field to search." msgstr "Choissez une marque pour réduire la liste" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10507,7 +10532,7 @@ msgid "Unsubscribe from this user" msgstr "Ne plus suivre cet utilisateur" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10597,88 +10622,45 @@ msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Remplissez ce formulaire pour modifier les options du groupe." +#~ msgid "No such people tag." +#~ msgstr "Cette marque n’existe pas." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Impossible de mettre à jour le groupe." +#~ msgid "Public people tag %s" +#~ msgstr "Flux public - page %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Reprises de %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Nuage de marques public" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Réponses à %1$s, page %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Ces étiquettes récentes sont les plus populaires sur %s" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Reprises de %s" +#~ msgid "People tag cloud" +#~ msgstr "Nuage de marques public" + +#~ msgid "Tag %s" +#~ msgstr "Marque %s" + +#~ msgid "Tag user" +#~ msgstr "Marquer l’utilisateur" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Réponses à %1$s, page %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "" -#~ "Problème lors de l’enregistrement de la boîte de réception du groupe." - -#~ msgid "Groups with most members" -#~ msgstr "Groupes avec le plus de membres" - -#~ msgid "Groups with most posts" -#~ msgstr "Groupes avec le plus d’éléments publiés" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Description du groupe ou du sujet" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Supprimer ce groupe." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Personnes" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Marque" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Modifier les paramètres du profil" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Modifier" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Abonnements de %s" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Tous les abonnements" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Personnes" - -#~ msgid "User" -#~ msgstr "Utilisateur" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Marques dans les avis de %s" - -#~ msgid "All subscriptions" -#~ msgstr "Tous les abonnements" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Personnes" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Abonnés de %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 6eb0a19ba2..4482292cc7 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:21+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:30+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" @@ -115,7 +115,7 @@ msgstr "Salve lis impuestazions di acès" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -152,9 +152,11 @@ msgstr "No tu sês jentrât." msgid "No such profile." msgstr "Il profîl nol esist." -#. TRANS: Client error displayed trying to reference a non-existing people tag. -msgid "No such people tag." -msgstr "" +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +msgid "No such list." +msgstr "La liste no esist." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. msgid "You cannot tag an OMB 0.1 remote profile with this action." @@ -174,7 +176,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Sotscrit" @@ -607,7 +609,7 @@ msgstr "Il non complet al è masse lunc (max 255 caratars)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -800,7 +802,7 @@ msgstr "" #. TRANS: Client error displayed when trying to create a list without a name. msgid "A list must have a name." -msgstr "" +msgstr "Une liste e à di vê un non." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." @@ -2187,33 +2189,28 @@ msgid "Invalid alias: \"%s\"" msgstr "" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Opzions salvadis." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Elimine la etichete de int %s" +msgstr "Elimine la liste %s" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Cambie la etichete de int %s" +msgstr "Cambie la liste %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. msgid "No tagger or ID." msgstr "" -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "La etichete no esist." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "" @@ -2244,7 +2241,7 @@ msgstr "La etichete no je valide." #. TRANS: %s is the already present tag. #, php-format msgid "You already have a tag named %s." -msgstr "" +msgstr "Tu âs za une etichete di non %s." #. TRANS: Text in confirmation dialog for setting a tag from public to private. msgid "" @@ -2253,9 +2250,8 @@ msgid "" msgstr "" #. TRANS: TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "No si à podût inzornâ lis preferencis IM." +msgstr "No si à podût inzornâ la liste." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -2406,6 +2402,9 @@ 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 "" +"Un codiç di conferme al è stât mandât ae direzion di pueste zontade. " +"Controle la pueste in jentrade (ancje la cartele dal spam!) pal codiç e lis " +"istruzions su cemût doprâlu." #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling Instant Messaging address confirmation that is not pending. @@ -2565,7 +2564,7 @@ msgstr "Chest utent ti à blocât e no tu puedis sotscrivilu." #. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token. msgid "You are not authorized." -msgstr "" +msgstr "No tu sês autorizât." #. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails. msgid "Could not convert request token to access token." @@ -2860,6 +2859,8 @@ msgid "" "You can send and receive notices through instant messaging [instant messages]" "(%%doc.im%%). Configure your addresses and settings below." msgstr "" +"Tu puedis mandâ e ricevi avîs par mieç di [messaçs istantaniis](%%doc.im%%). " +"Configure ca sot la tô direzion e lis impuestazions." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." @@ -2887,7 +2888,7 @@ msgstr "Direzion pai messaçs istantanis" #. TRANS: Field title for IM address. %s is the IM service name. #, php-format msgid "%s screenname." -msgstr "" +msgstr "Non utent %s." #. TRANS: Header for IM preferences form. msgid "IM Preferences" @@ -2899,11 +2900,11 @@ msgstr "Mandimi avîs" #. TRANS: Checkbox label in IM preferences form. msgid "Post a notice when my status changes." -msgstr "" +msgstr "Publiche un avîs cuant che o cambii il gno stât." #. TRANS: Checkbox label in IM preferences form. msgid "Send me replies from people I'm not subscribed to." -msgstr "" +msgstr "Mandimi lis rispuestis di int che no ai sotscrit." #. TRANS: Checkbox label in IM preferences form. msgid "Publish a MicroID" @@ -2920,26 +2921,23 @@ msgstr "Preferencis salvadis." #. TRANS: Message given saving IM address without having provided one. msgid "No screenname." -msgstr "" +msgstr "Nissun not utent." #. TRANS: Form validation error when no transport is available setting an IM address. msgid "No transport." msgstr "" #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." -msgstr "Nol è un sorenon valit." +msgstr "No si pues normalizâ chest non utent." #. TRANS: Message given saving IM address that not valid. -#, fuzzy msgid "Not a valid screenname." -msgstr "Nol è un sorenon valit." +msgstr "Nol è un non utent valit." #. TRANS: Message given saving IM address that is already set for another user. -#, fuzzy msgid "Screenname already belongs to another user." -msgstr "Il sorenon al è za doprât. Provent un altri." +msgstr "Il non utent al è za doprât di un altri utent." #. TRANS: Message given saving valid IM address that is to be confirmed. msgid "A confirmation code was sent to the IM address you added." @@ -3943,26 +3941,26 @@ msgstr "" msgid "People search" msgstr "Cîr personis" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. -#, php-format -msgid "Public people tag %s" -msgstr "Etichete publiche de int %s" +#. TRANS: Title for list page. +#. TRANS: %s is a list. +#, fuzzy, php-format +msgid "Public list %s" +msgstr "Etichetis publichis de int creadis di te" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. -#, php-format -msgid "Public people tag %1$s, page %2$d" +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, fuzzy, php-format +msgid "Public list %1$s, page %2$d" msgstr "Etichete publiche de int %1$s, pagjine %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "Lis etichetis de int a son un mût par meti in ordin personis similis su %%" "site.name%%, un servizi di [microblogging](http://en.wikipedia.org/wiki/" @@ -4002,9 +4000,8 @@ msgid "Public lists by you" msgstr "Etichetis publichis de int creadis di te" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Lis tôs etichetis" +msgstr "Lis tôs listis" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. @@ -4080,10 +4077,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "%s nol à ancjemò creât [etichetis de int](%%%%doc.tags%%%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Avîs etichetâts cun %1$s, pagjine %2$d" @@ -4105,23 +4104,23 @@ msgstr "" "imprest libar [StatusNet](http://status.net/). Tu puedis tignî di voli ce " "che a stan fasint sotscrivinti ae ativitât de etichete." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "%s nol è stât ancjemò [etichetât](%%%%doc.tags%%%%) di nissun." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "Sotscritôrs a int etichetade %1$s di %2$s" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s" +msgstr "Sotscritôrs ae etichete %1$s di %2$s." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Sotscritôrs a int etichetade %1$s di %2$s, pagjine %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4485,42 +4484,46 @@ msgstr "" "org/wiki/Micro-blogging) basât sul imprest libar [StatusNet](http://status." "net/)." -#. TRANS: Title for page with public people tag cloud. -msgid "Public people tag cloud" -msgstr "Nûl des etichetis de int publichis" +#. TRANS: Title for page with public list cloud. +#, fuzzy +msgid "Public list cloud" +msgstr "Nûl des etichetis publichis" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are most used people tags on %s" -msgstr "Chestis a son lis etichetis de int plui usadis su %s" +#, fuzzy, php-format +msgid "These are largest lists on %s" +msgstr "Chestis a son lis etichetis recentis plui popolârs su %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +#, fuzzy, php-format +msgid "No one has [listed](%%doc.tags%%) anyone yet." +msgstr "%s nol è stât ancjemò [etichetât](%%%%doc.tags%%%%) di nissun." + +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +msgid "Be the first to list someone!" msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. -msgid "Be the first to tag someone!" -msgstr "" - -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" +"Parcè no [tu regjistris une identitât](%%%%action.register%%%%) e tu " +"scomencis a seguî cheste ativitât!" -#. TRANS: DT element on on page with public people tag cloud. -msgid "People tag cloud" -msgstr "Nûl des etichetis de int" +#. TRANS: DT element on on page with public list cloud. +#, fuzzy +msgid "List cloud" +msgstr "La liste no je stade cjatade." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. -#, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +#. TRANS: Link title for number of listed people. %d is the number of listed people. +#, fuzzy, php-format +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "1 persone etichetade" msgstr[1] "%d personis etichetadis" @@ -4877,7 +4880,7 @@ msgstr "URL dal to profîl suntun altri servizi di microblogging compatibil." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Sotscrivimi" @@ -4903,7 +4906,21 @@ msgstr "" msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "Etichete gjavade" @@ -5082,11 +5099,11 @@ msgstr "" msgid "User is already sandboxed." msgstr "" -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." -msgstr "" +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." +msgstr "La direzion di pueste eletroniche no je valide." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. @@ -5362,19 +5379,19 @@ msgid "Notice deleted." msgstr "L'avîs al è stât eliminât." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Ativitât privade par int etichetade %1$s di te, pagjine %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Ativitât par int etichetade %1$s di te, pagjine %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Ativitât par int etichetade %1$s di %2$s, pagjine %3$d" @@ -5413,11 +5430,11 @@ msgstr "" "Cheste e je la ativitât pe int etichetade %1$s di %2$s ma nissun al à " "ancjemò publicât nuie." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "Prove a etichetâ altre int." -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" @@ -5432,7 +5449,7 @@ msgstr "" msgid "Listed" msgstr "Licence" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "Mostre dut" @@ -5924,24 +5941,25 @@ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. -msgid "You must be logged in to unsubscribe to a people tag." -msgstr "" +#, fuzzy +msgid "You must be logged in to unsubscribe from a list." +msgstr "Tu scugnis jessi jentrât par unîti a un grup." #. TRANS: Client error displayed when trying to perform an action without providing an ID. msgid "No ID given." msgstr "" -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. -#, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." -msgstr "" +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). +#, fuzzy, php-format +msgid "Could not subscribe user %1$s to list %2$s: %3$s" +msgstr "No si à podût zontâ l'utent %1$s al grup %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" -msgstr "" +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s subscribed to list %2$s by %3$s" +msgstr "Sotscrit a %s." #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. @@ -6037,7 +6055,6 @@ msgid "Subscription feed for %s (Atom)" msgstr "Canâl des sotscrizions di %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "IM" @@ -6074,40 +6091,44 @@ msgstr "Canâl dai avîs pe etichete %s (Atom)" #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. msgid "You cannot tag this user." -msgstr "" +msgstr "No tu puedis etichetâ chest utent." -#. TRANS: Title for people tag form when not on a profile page. -msgid "Tag a profile" +#. TRANS: Title for list form when not on a profile page. +#, fuzzy +msgid "List a profile" msgstr "Etichete un profîl" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Etichete %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Listis" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" msgid "Error" msgstr "Erôr" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Profîl dal utent" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Etichete utent" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Listis" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. +#, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Etichetis" +msgid "Lists" +msgstr "Listis" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. +#, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Etichetis par chest utent (letaris, numars, -, ., e _), dividudis di " @@ -6118,12 +6139,13 @@ msgctxt "TITLE" msgid "Tags" msgstr "Etichetis" -#. TRANS: Success message if people tags are saved. -msgid "Tags saved." +#. TRANS: Success message if lists are saved. +#, fuzzy +msgid "Lists saved." msgstr "Etichetis salvadis." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6146,11 +6168,11 @@ msgstr "L'utent nol è stât fat tasê." msgid "Unsubscribed" msgstr "No tu sês sotscrit" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" -msgstr "" +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s unsubscribed from list %2$s by %3$s" +msgstr "No tu sês plui sotscrit a %s." #. TRANS: Client error displayed when trying to update profile with an incompatible license. #. TRANS: %1$s is the license incompatible with site license %2$s. @@ -6421,7 +6443,7 @@ msgstr "Impuestazions grafichis" #. TRANS: Checkbox label on Profile design page. msgid "View profile designs" -msgstr "" +msgstr "Cjale grafichis dai profîi" #. TRANS: Title for checkbox on Profile design page. msgid "Show or hide profile designs." @@ -6703,7 +6725,7 @@ msgstr "" #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." -msgstr "" +msgstr "Tu âs za ripetût chest avîs." #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). @@ -6786,20 +6808,22 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. -msgid "Adding people tag subscription failed." -msgstr "" +#. TRANS: Exception thrown when inserting a list subscription in the database fails. +#, fuzzy +msgid "Adding list subscription failed." +msgstr "Sotscrizions di %s" -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. -msgid "Removing people tag subscription failed." -msgstr "" +#. TRANS: Exception thrown when deleting a list subscription from the database fails. +#, fuzzy +msgid "Removing list subscription failed." +msgstr "Refude la sotscrizion" #. TRANS: Exception thrown when a right for a non-existing user profile is checked. msgid "Missing profile." @@ -6820,7 +6844,7 @@ msgstr "" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. msgid "User has blocked you." -msgstr "" +msgstr "L'utent ti à blocât." #. TRANS: Exception thrown when trying to unsibscribe without a subscription. msgid "Not subscribed!" @@ -7393,7 +7417,7 @@ msgid "Cancel" msgstr "Scancele" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Salve" @@ -7439,15 +7463,15 @@ msgid "Do not use this method!" msgstr "" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Ativitât par int etichetade %1$s di %2$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" -msgstr "" +#, fuzzy, php-format +msgid "Updates from %1$s's list %2$s on %3$s!" +msgstr "Inzornaments di %1$s su %2$s!" #. TRANS: Title. msgid "Notices where this attachment appears" @@ -7489,7 +7513,7 @@ msgstr "" #. TRANS: Title for command results. msgid "AJAX error" -msgstr "" +msgstr "Erôr AJAX" #. TRANS: E-mail subject when a command has completed. #. TRANS: E-mail subject for reply to an e-mail command. @@ -8000,10 +8024,9 @@ msgstr "Grups" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Limits" +msgstr "Listis" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -8268,14 +8291,12 @@ msgid "Group actions" msgstr "Azions dal grup" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Avîs popolârs" +msgstr "Grups popolârs" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Ducj i grups" +msgstr "Grups atîfs" #. TRANS: Title for group tag cloud section. #. TRANS: %s is a group name. @@ -8362,10 +8383,9 @@ msgid "Transport cannot be null." msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "Invide gnûfs utents" +msgstr "Invide gnûfs coleghis" #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8866,7 +8886,6 @@ msgid "Notices" msgstr "Avîs" #. TRANS: Separator in profile addressees list. -#, fuzzy msgctxt "SEPARATOR" msgid ", " msgstr ", " @@ -8969,47 +8988,48 @@ msgstr "" msgid "No oEmbed API endpoint available." msgstr "" -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. +#, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Etichete" +msgid "List" +msgstr "Liste" -#. TRANS: Field title for people tag. -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +#. TRANS: Field title for list. +#, fuzzy +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" +"Etichetis par chest utent (letaris, numars, -, ., e _), dividudis di " +"virgulis o spazis." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "Descrîf il grup o l'argoment." +msgstr "Descrîf la liste o l'argoment." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "Descrîf il grup o l'argoment in %d caratar o mancul." -msgstr[1] "Descrîf il grup o l'argoment in %d caratars o mancul." +msgstr[0] "Descrîf la liste o l'argoment in %d caratar o mancul." +msgstr[1] "Descrîf la liste o l'argoment in %d caratars o mancul." #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Elimine chest utent" +msgstr "Elimine cheste liste" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "Zonte o gjave int" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgctxt "HEADER" msgid "Search" msgstr "Cîr" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Leams" +msgstr "Liste" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. @@ -9035,16 +9055,16 @@ msgstr "Sotscritôrs" msgid "Subscribers to %1$s list by %2$s." msgstr "Sotscritôrs ae etichete %1$s di %2$s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" msgstr "Cambie" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Cambie la tô etichete %s." +msgstr "Cambie la tô liste %s." #. TRANS: Link description for link to list of users tagged with a tag. msgid "Tagged" @@ -9059,7 +9079,7 @@ msgstr "Cambie lis impuestazions dal profîl." msgid "Edit" msgstr "Cambie" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. msgctxt "MODE" msgid "Private" msgstr "Privât" @@ -9071,52 +9091,60 @@ msgid "List Subscriptions" msgstr "Sotscrizions" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Sotscrit a %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Inzornaments cun \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Inzornaments cun \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "Etichete %1$s di %2$s." -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "Lis tôs etichetis" +msgid "Your lists" +msgstr "Listis popolârs" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. +#, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Modifiche etichetis" +msgid "Edit lists" +msgstr "Cambie la liste %s" + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "Etichetis" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Avîs popolârs" +msgstr "Listis popolârs" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. @@ -9124,11 +9152,12 @@ msgstr "Avîs popolârs" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Etichetâts: %1$d sotscritôrs: %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "La liste no je stade cjatade." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -9176,7 +9205,7 @@ msgstr "I tiei messaçs in jentrade" #. TRANS: Displayed as version information for a plugin if no version information was found. msgid "Unknown" -msgstr "" +msgstr "No cognossût" #. TRANS: Plugin admin panel controls msgctxt "plugin" @@ -9228,14 +9257,12 @@ msgid "Search the site." msgstr "Cîr tal sît" #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Seguìs" +msgstr "Al seguìs" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Seguìs" +msgstr "Lu seguissin" #. TRANS: Label for user statistics. msgid "User ID" @@ -9259,9 +9286,8 @@ msgid "Groups" msgstr "Grups" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "Limits" +msgstr "Listis" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -9718,16 +9744,16 @@ msgid "Choose a field to search." msgstr "Sielç i cjamps dulà cirî." #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. -#, php-format -msgid "Untag %1$s as %2$s" -msgstr "Gjave la etichete %2$s a %1$s" +#. TRANS: %1$s is a nickname, $2$s is a list. +#, fuzzy, php-format +msgid "Remove %1$s from list %2$s" +msgstr "Etichete %1$s di %2$s." -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. -#, php-format -msgid "Tag %1$s as %2$s" -msgstr "Etichete %1$s come %2$s" +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. +#, fuzzy, php-format +msgid "Add %1$s to list %2$s" +msgstr "Etichete %1$s di %2$s." #. TRANS: Title for top posters section. msgid "Top posters" @@ -9786,7 +9812,7 @@ msgid "Unsubscribe from this user" msgstr "Anule la sotscrizion a chest utent" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Anule la sotscrizion" @@ -9872,68 +9898,41 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "People tags by you" -#~ msgstr "Etichetis de int creadis di te" +#~ msgid "Public people tag %s" +#~ msgstr "Etichete publiche de int %s" -#~ msgid "People tags by %s" -#~ msgstr "Etichetis de int di %s" +#~ msgid "Subscribers of people tagged %1$s by %2$s" +#~ msgstr "Sotscritôrs a int etichetade %1$s di %2$s" -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Etichetis de int par %1$s, pagjine %2$d" +#~ msgid "Public people tag cloud" +#~ msgstr "Nûl des etichetis de int publichis" -#~ msgid "People tags for %s" -#~ msgstr "Etichetis de int par %s" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Chestis a son lis etichetis de int plui usadis su %s" -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Etichetis de int par %1$s, pagjine %2$d" +#~ msgid "People tag cloud" +#~ msgstr "Nûl des etichetis de int" -#~ msgid "People tagged %s by you" -#~ msgstr "Int etichetade %s di te" +#~ msgid "Tag %s" +#~ msgstr "Etichete %s" -#~ msgid "Groups with most members" -#~ msgstr "Grups cun plui membris" +#~ msgid "Tag user" +#~ msgstr "Etichete utent" -#~ msgid "Groups with most posts" -#~ msgstr "Grups cun plui messaçs" +#~ msgctxt "LABEL" +#~ msgid "Tag" +#~ msgstr "Etichete" -#~ msgid "Describe the people tag or topic." -#~ msgstr "Descrîf la etichete de int o l'argoment." +#~ msgctxt "LABEL" +#~ msgid "Tags by you" +#~ msgstr "Lis tôs etichetis" -#~ msgid "Delete this people tag." -#~ msgstr "Elimine cheste etichete de int." +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Modifiche etichetis" -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Etichete de int" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "Gjave la etichete %2$s a %1$s" -#~ msgctxt "MENU" -#~ msgid "Tagged" -#~ msgstr "Etichetât" - -#~ msgid "Edit people tag settings." -#~ msgstr "Cambie lis impuestazions des etichetis de int." - -#~ msgid "People tags with most subscribers" -#~ msgstr "Etichetis de int cun plui sotscritôrs" - -#~ msgid "People tag subscriptions" -#~ msgstr "Sotscrizions a etichetis de int" - -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Etichetis de int" - -#~ msgid "User" -#~ msgstr "Utent" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Etichetis dai avîs di %s" - -#~ msgid "All subscriptions" -#~ msgstr "Dutis lis sotscrizions" - -#~ msgid "People tags" -#~ msgstr "Etichetis de int" - -#~ msgid "People tags by %s." -#~ msgstr "Etichetis de int di %s." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "Etichete %1$s come %2$s" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 13e1043dfb..829549f437 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:22+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:31+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -115,7 +115,7 @@ msgstr "Gardar a configuración de acceso" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -152,9 +152,11 @@ msgstr "Non iniciou sesión." msgid "No such profile." msgstr "Non existe ese perfil." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Esa etiqueta non existe." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -176,7 +178,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Subscrito" @@ -616,7 +618,7 @@ msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2280,7 +2282,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Pseudónimo inválido: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Gardáronse as preferencias." @@ -2303,11 +2305,6 @@ msgstr "A etiqueta de persoa non é correcta: %s." msgid "No tagger or ID." msgstr "Nin alcume nin ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Esa etiqueta non existe." - #. TRANS: Client error displayed when referring to non-local user. #, fuzzy msgid "Not a local user." @@ -4170,26 +4167,26 @@ msgstr "" msgid "People search" msgstr "Busca de xente" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Liña do tempo pública, páxina %d" +msgid "Public list %s" +msgstr "Nube de etiquetas públicas" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Respostas a %1$s, páxina %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** é un grupo de usuarios de %%%%site.name%%%%, un servizo de [mensaxes " "de blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " @@ -4310,10 +4307,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "Ninguén publicou aínda ningunha nota cunha [etiqueta](%%doc.tags%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Notas etiquetadas con %1$s, páxina %2$d" @@ -4334,23 +4333,23 @@ msgstr "" "baseado na ferramenta de software libre [StatusNet](http://status.net/). Os " "seus membros comparten mensaxes curtas sobre as súas vidas e intereses. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "Ninguén publicou aínda ningunha nota cunha [etiqueta](%%doc.tags%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Subscribiuse a %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Notas etiquetadas con %1$s, páxina %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4740,47 +4739,47 @@ msgstr "" "wikipedia.org/wiki/Microblogging) (en inglés) baseado na ferramenta de " "software libre [StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Nube de etiquetas públicas" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Estas son as etiquetas máis populares en %s " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Ninguén publicou aínda ningunha nota cunha [etiqueta](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Sexa o primeiro en publicar unha!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Por que non [rexistrar unha conta](%%action.register%%) e ser o primeiro en " "publicar unha?" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Nube de etiquetas públicas" +msgid "List cloud" +msgstr "Non se atopou o método da API." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5172,7 +5171,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5205,7 +5204,21 @@ msgstr "Non se puido obter o pase solicitado." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Non se pode subscribir a un perfil remoto OMB 0.1 con esta acción." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5396,10 +5409,10 @@ msgstr "Non pode illar usuarios neste sitio." msgid "User is already sandboxed." msgstr "O usuario xa está illado." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "A etiqueta de persoa non é correcta: %s." #. TRANS: Page title for page showing self tags. @@ -5697,19 +5710,19 @@ msgid "Notice deleted." msgstr "Borrouse a nota." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Usuarios etiquetados por si mesmos con %1$s - páxina %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Usuarios etiquetados por si mesmos con %1$s - páxina %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Notas etiquetadas con %1$s, páxina %2$d" @@ -5747,11 +5760,11 @@ msgid "" msgstr "" "Esta é a liña do tempo de %s e amigos pero ninguén publicou nada aínda." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5766,7 +5779,7 @@ msgstr "" msgid "Listed" msgstr "Licenza" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6296,7 +6309,7 @@ msgstr "Non se pode subscribir a un perfil remoto OMB 0.1 con esta acción." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Ten que iniciar sesión para crear un grupo." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6304,16 +6317,16 @@ msgstr "Ten que iniciar sesión para crear un grupo." msgid "No ID given." msgstr "Sen argumento ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s subscritores, páxina %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6456,42 +6469,43 @@ msgstr "Fonte de novas das notas para a etiqueta %s (Atom)" msgid "You cannot tag this user." msgstr "Non pode enviarlle unha mensaxe a este usuario." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Perfil do usuario" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Etiqueta %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Límites" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Houbo un erro de AJAX" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Perfil do usuario" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Etiquetar ao usuario" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Límites" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Etiquetas" +msgid "Lists" +msgstr "Límites" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Etiquetas para vostede (letras salvo eñes e tiles, números, puntos, guións e " @@ -6503,13 +6517,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Etiquetas" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Gardouse o contrasinal." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Utilice este formulario para engadir etiquetas aos seus subscritores ou " "subscricións." @@ -6534,10 +6549,10 @@ msgstr "O usuario non está silenciado." msgid "Unsubscribed" msgstr "Cancelouse a subscrición" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s subscritores, páxina %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7237,21 +7252,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Non se puido borrar a subscrición." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Non se puido borrar a subscrición." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7881,7 +7896,7 @@ msgid "Cancel" msgstr "Cancelar" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Gardar" @@ -7930,14 +7945,14 @@ msgid "Do not use this method!" msgstr "Non borrar esta nota" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Respostas a %1$s en %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Actualizacións de %1$s en %2$s!" #. TRANS: Title. @@ -9628,15 +9643,15 @@ msgstr "Non se puido inserir unha subscrición nova." msgid "No oEmbed API endpoint available." msgstr "A mensaxería instantánea non está dispoñible." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Etiqueta" +msgid "List" +msgstr "Ligazóns" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Etiquetas para este usuario (letras, números, -, ., e _), separadas por " "comas ou espazos en branco" @@ -9659,11 +9674,11 @@ msgstr[1] "Describa o grupo ou o tema en %d caracteres" msgid "Delete this list." msgstr "Borrar o usuario" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9700,7 +9715,7 @@ msgstr "Subscritores" msgid "Subscribers to %1$s list by %2$s." msgstr "Subscribiuse a %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9726,7 +9741,7 @@ msgstr "Modificar a configuración do perfil" msgid "Edit" msgstr "Modificar" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9739,48 +9754,57 @@ msgid "List Subscriptions" msgstr "Subscricións" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Subscribiuse a %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Actualizacións con \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Actualizacións con \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Notas populares" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Modificar" +msgid "Edit lists" +msgstr "A etiqueta de persoa non é correcta: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Etiquetas" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9793,11 +9817,12 @@ msgstr "Notas populares" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s subscritores, páxina %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Non se atopou o método da API." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10438,16 +10463,16 @@ msgid "Choose a field to search." msgstr "Escolla unha etiqueta para reducir a lista" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10510,7 +10535,7 @@ msgid "Unsubscribe from this user" msgstr "Cancelar a subscrición a este usuario" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10600,87 +10625,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Utilice este formulario para editar o grupo." +#~ msgid "No such people tag." +#~ msgstr "Esa etiqueta non existe." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Non se puido actualizar o grupo." +#~ msgid "Public people tag %s" +#~ msgstr "Liña do tempo pública, páxina %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Repeticións de %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Nube de etiquetas públicas" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Respostas a %1$s, páxina %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Estas son as etiquetas máis populares en %s " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Repeticións de %s" +#~ msgid "People tag cloud" +#~ msgstr "Nube de etiquetas públicas" + +#~ msgid "Tag %s" +#~ msgstr "Etiqueta %s" + +#~ msgid "Tag user" +#~ msgstr "Etiquetar ao usuario" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Respostas a %1$s, páxina %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Houbo un problema ao gardar a caixa de entrada do grupo." - -#~ msgid "Groups with most members" -#~ msgstr "Grupos con máis membros" - -#~ msgid "Groups with most posts" -#~ msgstr "Grupos con máis notas" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Describa o grupo ou o tema" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Borrar o usuario" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Xente" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Etiqueta" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Modificar a configuración do perfil" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Modificar" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Persoas ás que está subscrito %s" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Todas as subscricións" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Xente" - -#~ msgid "User" -#~ msgstr "Usuario" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Etiquetas nas notas de %s" - -#~ msgid "All subscriptions" -#~ msgstr "Todas as subscricións" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Xente" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Persoas subscritas a %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 9dcd4625b1..c34d9b8152 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:24+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:33+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -115,7 +115,7 @@ msgstr "Přistupne nastajenja składować" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -152,9 +152,11 @@ msgstr "Njepřizjewjeny." msgid "No such profile." msgstr "Profil njeeksistuje." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Taflička njeeksistuje." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -176,7 +178,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Abonowany" @@ -607,7 +609,7 @@ msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2201,7 +2203,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Njepłaćiwy alias: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Opcije składowane." @@ -2224,11 +2226,6 @@ msgstr "Njepłaćiwa wosobowa taflička: %s." msgid "No tagger or ID." msgstr "Žane přimjeno abo žadyn ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Taflička njeeksistuje." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Njeje lokalny wužiwar." @@ -3969,26 +3966,26 @@ msgstr "" msgid "People search" msgstr "Za ludźimi pytać" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" +msgid "Public list %s" msgstr "Zjawna časowa lajsta, strona %d" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Wotmołwy na %1$s, strona %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" #. TRANS: Client error displayed when a tagger is expected but not provided. @@ -4100,10 +4097,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Zdźělenki su z %1$s woznamjenjene, strona %2$d" @@ -4120,23 +4119,23 @@ msgid "" "tag's timeline." msgstr "" -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "%s abonowany." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "%1$s z %2$s markěrowany, strona %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4498,47 +4497,47 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Zjawna časowa lajsta, strona %d" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Budź prěni, kiž tajki pisa!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "%s nima abonentow. Čehodla nochceš [konto registrować] (%%%%action.register%%" "%%) a prěni być?" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Ludźi pytać" +msgid "List cloud" +msgstr "Wužiwar njenamakany." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -4884,7 +4883,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4912,7 +4911,21 @@ msgstr "Přistupny token njeda so wobstarać." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Njemóžeš zdaleny profil OMB 0.1 z tutej akciju abonować." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5090,10 +5103,10 @@ msgstr "Njemóžeš wužiwarjow na tutym sydle do pěskoweho kašćika słać." msgid "User is already sandboxed." msgstr "Wužiwar je hižo w pěskowym kašćiku." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Njepłaćiwa wosobowa taflička: %s." #. TRANS: Page title for page showing self tags. @@ -5369,19 +5382,19 @@ msgid "Notice deleted." msgstr "Zdźělenka zničena." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "%1$s z %2$s markěrowany, strona %3$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "%1$s z %2$s markěrowany, strona %3$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "%1$s z %2$s markěrowany, strona %3$d" @@ -5418,11 +5431,11 @@ msgid "" "yet." msgstr "" -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5437,7 +5450,7 @@ msgstr "" msgid "Listed" msgstr "Licenca" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -5933,7 +5946,7 @@ msgstr "Njemóžeš zdaleny profil OMB 0.1 z tutej akciju abonować." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Dyrbiš přizjewjeny być, zo by skupinu wutworił." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -5941,16 +5954,16 @@ msgstr "Dyrbiš přizjewjeny być, zo by skupinu wutworił." msgid "No ID given." msgstr "Žadyn argument ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s abonentow, strona %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6085,40 +6098,42 @@ msgstr "Zdźělenski kanal za tafličku %s (Atom)" msgid "You cannot tag this user." msgstr "Njemóžeš tutomu wužiwarju powěsć pósłać." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Wužiwarski profil" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Limity" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Zmylk Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Wužiwarski profil" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Limity" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. +#, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "" +msgid "Lists" +msgstr "Limity" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" @@ -6127,13 +6142,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Hesło składowane." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "wužij tutón formular, zo by swojim abonentam abo abonementam taflički přidał." @@ -6157,10 +6173,10 @@ msgstr "Wužiwarjej huba zatykana njeje." msgid "Unsubscribed" msgstr "Wotskazany" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s abonentow, strona %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -6814,21 +6830,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Abonoment njeda so zhašeć ." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Abonoment njeda so zhašeć ." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7435,7 +7451,7 @@ msgid "Cancel" msgstr "Přetorhnyć" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Składować" @@ -7482,14 +7498,14 @@ msgid "Do not use this method!" msgstr "Njewužij tutu metodu!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Wotmołwy na %1$s na %2$s." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Aktualizacije wot %1$s na %2$s!" #. TRANS: Title. @@ -9095,13 +9111,14 @@ msgstr "Nowy abonement njeda so zasunyć." msgid "No oEmbed API endpoint available." msgstr "IM k dispoziciji njesteji." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. +#, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "" +msgid "List" +msgstr "Wotkazy" -#. TRANS: Field title for people tag. -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +#. TRANS: Field title for list. +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" #. TRANS: Field title for description of list. @@ -9124,11 +9141,11 @@ msgstr[3] "Skupinu abo temu w %d znamješkach abo mjenje wopisać" msgid "Delete this list." msgstr "Tutoho wužiwarja zhašeć" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9165,7 +9182,7 @@ msgstr "Abonenća" msgid "Subscribers to %1$s list by %2$s." msgstr "%s abonowany." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9190,7 +9207,7 @@ msgstr "Profilowe nastajenja wobdźěłać" msgid "Edit" msgstr "Wobdźěłać" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9203,48 +9220,56 @@ msgid "List Subscriptions" msgstr "Abonementy" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "%s abonowany." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Aktualizacije z \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Aktualizacije z \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Woblubowane zdźělenki" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Wobdźěłać" +msgid "Edit lists" +msgstr "Njepłaćiwa wosobowa taflička: %s." + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9257,11 +9282,12 @@ msgstr "Woblubowane zdźělenki" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s abonentow, strona %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Wužiwar njenamakany." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -9892,16 +9918,16 @@ msgid "Choose a field to search." msgstr "" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -9963,7 +9989,7 @@ msgid "Unsubscribe from this user" msgstr "Tutoho wužiwarja wotskazać" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10061,82 +10087,22 @@ msgid "Getting backup from file '%s'." msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Wuž tutón formular, zo by skupinu wobdźěłał." +#~ msgid "No such people tag." +#~ msgstr "Taflička njeeksistuje." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Skupina njeje so dała aktualizować." +#~ msgid "People tag cloud" +#~ msgstr "Ludźi pytać" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Wospjetowanja wot %s" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Wobdźěłać" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Wotmołwy na %1$s, strona %2$d" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Wospjetowanja wot %s" - -#, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Wotmołwy na %1$s, strona %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Zmylk při składowanju powěsće." - -#~ msgid "Groups with most members" -#~ msgstr "Skupiny z najwjace čłonami" - -#~ msgid "Groups with most posts" -#~ msgstr "Skupiny z njawjace powěsćemi" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Skupinu abo temu wopisać" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Tutu skupinu zhašeć." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Ludźo" - -#, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Profilowe nastajenja wobdźěłać" - -#, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Ludźo, kotrychž %s abonuje" - -#, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Wšě abonementy" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Ludźo" - -#~ msgid "User" -#~ msgstr "Wužiwar" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Taflički w zdźělenkach wot %s" - -#~ msgid "All subscriptions" -#~ msgstr "Wšě abonementy" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Ludźo" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Ludźo, kotřiž su %s abonowali" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index e502f87416..3509e42180 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -119,7 +119,7 @@ msgstr "Salveguardar configurationes de accesso" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -156,9 +156,11 @@ msgstr "Tu non ha aperite un session." msgid "No such profile." msgstr "Profilo non existe." -#. TRANS: Client error displayed trying to reference a non-existing people tag. -msgid "No such people tag." -msgstr "Iste etiquetta de persona non existe." +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +msgid "No such list." +msgstr "Lista non existe." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. msgid "You cannot tag an OMB 0.1 remote profile with this action." @@ -180,7 +182,7 @@ msgstr "" "Un problema occurreva durante le etiquettage de %s. Le servitor remote " "probabilemente non responde correctemente. Per favor reproba plus tarde." -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Subscribite" @@ -619,7 +621,7 @@ msgstr "Le nomine complete es troppo longe (maximo 255 characteres)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2236,33 +2238,28 @@ msgid "Invalid alias: \"%s\"" msgstr "Alias invalide: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Optiones salveguardate." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Deler le etiquetta de persona \"%s\"" +msgstr "Deler le lista \"%s\"" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Modificar le etiquetta de persona \"%s\"" +msgstr "Modificar le lista \"%s\"" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. msgid "No tagger or ID." msgstr "Etiquettator o ID non specificate." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Etiquetta non existe." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Le usator non es local." @@ -2272,9 +2269,8 @@ msgid "You must be the creator of the tag to edit it." msgstr "Tu debe esser le creator del etiquetta pro poter modificar lo." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Usa iste formulario pro modificar le gruppo." +msgstr "Usa iste formulario pro modificar le lista." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. msgid "Delete aborted." @@ -2307,9 +2303,8 @@ msgstr "" "a illo essera permanentemente cancellate. Es tu secur de voler continuar?" #. TRANS: TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "Non poteva actualisar le usator." +msgstr "Non poteva actualisar le lista." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -4059,26 +4054,26 @@ msgstr "" msgid "People search" msgstr "Recerca de personas" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. -#, php-format -msgid "Public people tag %s" -msgstr "Etiquetta public de persona \"%s\"" +#. TRANS: Title for list page. +#. TRANS: %s is a list. +#, fuzzy, php-format +msgid "Public list %s" +msgstr "Listas public que tu creava" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. -#, php-format -msgid "Public people tag %1$s, page %2$d" +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, fuzzy, php-format +msgid "Public list %1$s, page %2$d" msgstr "Etiquetta public de persona \"%1$s\", pagina %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "Le etiquettas de persona es le medio de classificar personas similar in %%" "site.name%%, un servicio de [micro-blogging](http://ia.wikipedia.org/wiki/" @@ -4092,15 +4087,15 @@ msgstr "Etiquettator non trovate." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Personas etiquettate con \"%1$s\" per %2$s" +msgstr "Personas listate in \"%1$s\" per %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Personas etiquettate con \"%1$s\" per %2$s, pagina %3$d" +msgstr "Personas listate in \"%1$s\" per %2$s, pagina %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. @@ -4108,45 +4103,41 @@ msgid "Creator" msgstr "Creator" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Etiquettas de persona private que tu creava" +msgstr "Listas private que tu creava" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Etiquettas de persona public que tu creava" +msgstr "Listas public que tu creava" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Modificar gruppo %s" +msgstr "Listas que tu creava" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Listas create per %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Notas per %1$s, pagina %2$d" +msgstr "Listas create per %1$s, pagina %2$d" #. TRANS: Client error displayed when trying view another user's private lists. -#, fuzzy msgid "You cannot view others' private lists" -msgstr "Tu non pote vider le etiquettas de persona private de altere usatores" +msgstr "Tu non pote vider le listas private de altere usatores" #. TRANS: Mode selector label. msgid "Mode" msgstr "Modo" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Cassa de exito pro %s" +msgstr "Listas pro %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -4175,7 +4166,7 @@ msgstr "Ir" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4183,33 +4174,33 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"Istes es etiquettas de persona create per **%s**. Le etiquettas de persona " -"es le medio de classificar personas similar in %%%%site.name%%%%, un " -"servicio de [micro-blogging](http://ia.wikipedia.org/wiki/Microblog) a base " -"del software libere [StatusNet](http://status.net/). Tu pote facilemente " -"traciar le activitates de personas similar per subscriber te al chronologia " -"de un etiquetta." +"Istes es listas create per **%s**. Le listas es le medio de classificar " +"personas similar in %%%%site.name%%%%, un servicio de [micro-blogging]" +"(http://ia.wikipedia.org/wiki/Microblog) a base del software libere " +"[StatusNet](http://status.net/). Tu pote facilemente traciar le activitates " +"de personas similar per subscriber te al chronologia de un lista." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "" -"%s non ha ancora create alcun [etiquettas de persona](%%%%doc.tags%%%%)." +msgstr "%s non ha ancora create alcun [lista](%%%%doc.lists%%%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Listas que contine \"%s\"" -#, fuzzy, php-format +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Notas etiquettate con %1$s, pagina %2$d" +msgstr "Listas que contine \"%1$s\", pagina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4217,49 +4208,48 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"Istes es etiquettas de persona pro **%s**. Le etiquettas de persona es le " -"medio de classificar personas similar in %%%%site.name%%%%, un servicio de " -"[micro-blogging](http://ia.wikipedia.org/wiki/Microblog) a base del software " -"libere [StatusNet](http://status.net/). Tu pote facilemente traciar le " -"activitates de personas similar per subscriber te al chronologia de un " -"etiquetta." +"Istes es listas pro **%s**. Le listas es le medio de classificar personas " +"similar in %%%%site.name%%%%, un servicio de [micro-blogging](http://ia." +"wikipedia.org/wiki/Microblog) a base del software libere [StatusNet](http://" +"status.net/). Tu pote facilemente traciar le activitates de personas similar " +"per subscriber te al chronologia de un lista." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "%s non ha ancora essite [etiquettate](%%%%doc.tags%%%%) per alcuno." +msgstr "%s non ha ancora essite [listate](%%%%doc.lists%%%%) per alcuno." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "Subscriptores de personas etiquettate con \"%1$s\" per %2$s" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s" +msgstr "Subscribite a %s." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "" "Subscriptores de personas etiquettate con \"%1$s\" per %2$s, pagina %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Subscribite a %s." +msgstr "Listas al quales %s ha subscribite" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "Etiquettas de persona al quales %1$s es subscribite, pagina %2$d" +msgstr "Listas al quales %1$s ha subscribite, pagina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4267,12 +4257,11 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"Istes es etiquettas de persona al quales **%s** se ha subscribite. Le " -"etiquettas de persona es le medio de classificar personas similar in %%%%" -"site.name%%%%, un servicio de [micro-blogging](http://ia.wikipedia.org/wiki/" -"Microblog) a base del software libere [StatusNet](http://status.net/). Tu " -"pote facilemente traciar le activitates de personas similar per subscriber " -"te al chronologia de un etiquetta." +"Istes es le listas al quales **%s** ha subscribite. Le listas es le medio de " +"classificar personas similar in %%%%site.name%%%%, un servicio de [micro-" +"blogging](http://ia.wikipedia.org/wiki/Microblog) a base del software libere " +"[StatusNet](http://status.net/). Tu pote facilemente traciar le activitates " +"de personas similar per subscriber te al chronologia de un lista." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -4620,50 +4609,49 @@ msgstr "" "Isto es %%site.name%%, un servicio de [micro-blog](http://ia.wikipedia.org/" "wiki/Microblog) a base del software libere [StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Etiquettario public" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Istes es le etiquettas recente le plus popular in %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." -msgstr "" -"Nulle persona ha ancora publicate un nota con un [hashtag](%%doc.tags%%)." +msgid "No one has [listed](%%doc.tags%%) anyone yet." +msgstr "Nemo ha ancora [etiquettate](%%doc.tags%%) alcuno." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" -msgstr "Sia le prime a publicar un!" +msgid "Be the first to list someone!" +msgstr "Sia le prime a etiquettar alcuno!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" -"Proque non [registrar un conto](%%action.register%%) e devenir le prime a " -"publicar un?" +"Proque non [crear un conto](%%action.register%%) e devenir le prime a " +"etiquettar alcuno?" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Etiquettario public" +msgid "List cloud" +msgstr "Lista non trovate." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. -#, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" -msgstr[0] "" -msgstr[1] "" +#. TRANS: Link title for number of listed people. %d is the number of listed people. +#, fuzzy, php-format +msgid "1 person listed" +msgid_plural "%d people listed" +msgstr[0] "1 persona etiquettate" +msgstr[1] "%d personas etiquettate" #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format @@ -5030,7 +5018,7 @@ msgstr "URL de tu profilo in un altere servicio de microblogging compatibile." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Subscriber" @@ -5059,7 +5047,23 @@ msgstr "Non poteva obtener un indicio de requesta." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Tu non pote subscriber te a un profilo remote OMB 0.1 con iste action." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, fuzzy, php-format +msgid "There was an unexpected error while listing %s." +msgstr "Un error inexpectate occurreva durante le etiquettage de %s." + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, fuzzy, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" +"Un problema occurreva durante le etiquettage de %s. Le servitor remote " +"probabilemente non responde correctemente. Per favor reproba plus tarde." + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5248,10 +5252,10 @@ msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito." msgid "User is already sandboxed." msgstr "Usator es ja in cassa de sablo." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Etiquetta de personas invalide: %s." #. TRANS: Page title for page showing self tags. @@ -5537,19 +5541,19 @@ msgid "Notice deleted." msgstr "Nota delite." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Usatores auto-etiquettate con %1$s - pagina %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Usatores auto-etiquettate con %1$s - pagina %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Notas per %1$s etiquettate con %2$s, pagina %3$d" @@ -5588,11 +5592,11 @@ msgstr "" "Isto es le chronologia pro %s e su amicos, ma necuno ha ancora publicate " "alique." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5607,7 +5611,7 @@ msgstr "" msgid "Listed" msgstr "Licentia" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6112,7 +6116,7 @@ msgstr "Tu non pote subscriber te a un profilo remote OMB 0.1 con iste action." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Tu debe aperir un session pro crear un gruppo." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6120,16 +6124,16 @@ msgstr "Tu debe aperir un session pro crear un gruppo." msgid "No ID given." msgstr "Nulle parametro de ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Subscriptores a %1$s, pagina %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6272,42 +6276,43 @@ msgstr "Syndication de notas pro le etiquetta %s (Atom)" msgid "You cannot tag this user." msgstr "Tu non pote inviar un message a iste usator." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Profilo del usator" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Etiquetta %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Limites" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Error de Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Profilo del usator" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Etiquettar usator" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Limites" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Etiquettas" +msgid "Lists" +msgstr "Limites" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Etiquettas pro te (litteras, numeros, -, ., e _), separate per commas o " @@ -6318,13 +6323,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Etiquettas" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Contrasigno salveguardate." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Usa iste formulario pro adder etiquettas a tu subscriptores o subscriptiones." @@ -6348,10 +6354,10 @@ msgstr "Le usator non es silentiate." msgid "Unsubscribed" msgstr "Subscription cancellate" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Subscriptores a %1$s, pagina %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7027,21 +7033,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Non poteva deler subscription." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Non poteva deler subscription." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7647,7 +7653,7 @@ msgid "Cancel" msgstr "Cancellar" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Salveguardar" @@ -7693,14 +7699,14 @@ msgid "Do not use this method!" msgstr "Non usa iste methodo!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Responsas a %1$s in %2$s." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Actualisationes de %1$s in %2$s!" #. TRANS: Title. @@ -9325,15 +9331,15 @@ msgstr "Non poteva inserer nove subscription." msgid "No oEmbed API endpoint available." msgstr "Nulle puncto de fin del API de oEmbed es disponibile." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Etiquetta" +msgid "List" +msgstr "Ligamines" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Etiquettas pro iste usator (litteras, numeros, -, . e _), separate per " "commas o spatios." @@ -9356,11 +9362,11 @@ msgstr[1] "Describe le gruppo o topico in %d characteres o minus." msgid "Delete this list." msgstr "Deler iste usator." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9396,7 +9402,7 @@ msgstr "Subscriptores" msgid "Subscribers to %1$s list by %2$s." msgstr "Subscribite a %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9422,7 +9428,7 @@ msgstr "Modificar configuration de profilo." msgid "Edit" msgstr "Modificar" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9435,48 +9441,57 @@ msgid "List Subscriptions" msgstr "Subscriptiones" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Subscribite a %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Actualisationes con \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Actualisationes con \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s e %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Notas popular" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Modificar" +msgid "Edit lists" +msgstr "Modificar le lista \"%s\"" + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Etiquettas" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9489,11 +9504,12 @@ msgstr "Notas popular" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Subscriptores a %1$s, pagina %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Lista non trovate." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10106,16 +10122,16 @@ msgid "Choose a field to search." msgstr "Selige un etiquetta pro reducer le lista." #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s e %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s e %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10174,7 +10190,7 @@ msgid "Unsubscribe from this user" msgstr "Cancellar subscription a iste usator" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancellar subscription" @@ -10260,85 +10276,44 @@ msgstr "XML invalide, radice XRD mancante." msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Usa iste formulario pro modificar le etiquetta de persona." +#~ msgid "No such people tag." +#~ msgstr "Iste etiquetta de persona non existe." -#~ msgid "Could not update people tag." -#~ msgstr "Non poteva actualisar le etiquetta de persona." +#~ msgid "Public people tag %s" +#~ msgstr "Etiquetta public de persona \"%s\"" -#~ msgid "People tags by you" -#~ msgstr "Etiquettas de persona que tu creava" +#~ msgid "Subscribers of people tagged %1$s by %2$s" +#~ msgstr "Subscriptores de personas etiquettate con \"%1$s\" per %2$s" -#~ msgid "People tags by %s" -#~ msgstr "Etiquettas de persona create per %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Etiquettario public de personas" -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Etiquettas de persona create per %1$s, pagina %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Istes es le etiquettas de persona le plus popular in %s" -#~ msgid "People tags for %s" -#~ msgstr "Etiquettas de persona pro %s" +#~ msgid "People tag cloud" +#~ msgstr "Etiquettario de personas" -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Etiquettas de persona pro %1$s, pagina %2$d" +#~ msgid "Tag %s" +#~ msgstr "Etiquetta %s" + +#~ msgid "Tag user" +#~ msgstr "Etiquettar usator" #, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problema salveguardar le cassa de entrata del gruppo." - -#~ msgid "Groups with most members" -#~ msgstr "Gruppos con le plus membros" - -#~ msgid "Groups with most posts" -#~ msgstr "Gruppos con le plus messages" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Describe le gruppo o topico." - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Deler iste gruppo." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Personas" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Etiquetta" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Modificar configuration de profilo." +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Modificar" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Personas a qui %s es subscribite." +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s e %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Tote le subscriptiones" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Personas" - -#~ msgid "User" -#~ msgstr "Usator" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Etiquettas in le notas de %s" - -#~ msgid "All subscriptions" -#~ msgstr "Tote le subscriptiones" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Personas" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Personas subscribite a %s." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 848b649eeb..160a93e216 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:36+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -116,7 +116,7 @@ msgstr "Salva impostazioni di accesso" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -154,9 +154,11 @@ msgstr "Accesso non effettuato." msgid "No such profile." msgstr "Nessun profilo." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Nessuna etichetta." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -179,7 +181,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Abbonati" @@ -620,7 +622,7 @@ msgstr "Nome troppo lungo (max 255 caratteri)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2294,7 +2296,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Alias non valido: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Opzioni salvate." @@ -2317,11 +2319,6 @@ msgstr "Non è un'etichetta valida di persona: %s." msgid "No tagger or ID." msgstr "Nessun soprannome o ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Nessuna etichetta." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Utente inesistente." @@ -4185,26 +4182,26 @@ msgstr "" msgid "People search" msgstr "Cerca persone" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Attività pubblica, pagina %d" +msgid "Public list %s" +msgstr "Insieme delle etichette" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Risposte a %1$s, pagina %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** è un gruppo di utenti su %%%%site.name%%%%, un servizio di [microblog]" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " @@ -4323,10 +4320,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "Nessuno ha ancora scritto un messaggio con un [hashtag](%%doc.tags%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Messaggi etichettati con %1$s, pagina %2$d" @@ -4346,23 +4345,23 @@ msgstr "" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " "[StatusNet](http://status.net/)." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "Nessuno ha ancora scritto un messaggio con un [hashtag](%%doc.tags%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Abbonati a %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Messaggi etichettati con %1$s, pagina %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4748,45 +4747,45 @@ msgstr "" "wiki/Microblogging) basato sul software libero [StatusNet](http://status." "net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Insieme delle etichette" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Queste sono le etichette più usate e recenti su %s " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Nessuno ha ancora scritto un messaggio con un [hashtag](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Scrivilo tu!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Insieme delle etichette" +msgid "List cloud" +msgstr "Metodo delle API non trovato." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5170,7 +5169,7 @@ msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5204,7 +5203,21 @@ msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" "Non è possibile abbonarsi a un profilo remoto OMB 0.1 con quest'azione." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5393,10 +5406,10 @@ msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." msgid "User is already sandboxed." msgstr "L'utente è già nella \"sandbox\"." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Non è un'etichetta valida di persona: %s." #. TRANS: Page title for page showing self tags. @@ -5691,19 +5704,19 @@ msgid "Notice deleted." msgstr "Messaggio eliminato." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Utenti auto-etichettati con %1$s - pagina %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Utenti auto-etichettati con %1$s - pagina %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Messaggi etichettati con %1$s, pagina %2$d" @@ -5742,11 +5755,11 @@ msgstr "" "Questa è l'attività di %s e i suoi amici, ma nessuno ha ancora scritto " "qualche cosa." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5759,7 +5772,7 @@ msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!" msgid "Listed" msgstr "Licenza" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6284,7 +6297,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Devi eseguire l'accesso per creare un gruppo." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6292,16 +6305,16 @@ msgstr "Devi eseguire l'accesso per creare un gruppo." msgid "No ID given." msgstr "Nessun argomento ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Abbonati a %1$s, pagina %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6444,42 +6457,43 @@ msgstr "Feed dei messaggi per l'etichetta %s (Atom)" msgid "You cannot tag this user." msgstr "Non puoi inviare un messaggio a questo utente." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Profilo utente" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Etichetta %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Limiti" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Errore di Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Profilo utente" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Etichette utente" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Limiti" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Etichette" +msgid "Lists" +msgstr "Limiti" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" @@ -6490,13 +6504,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Etichette" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Password salvata." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi " "abbonamenti." @@ -6521,10 +6536,10 @@ msgstr "L'utente non è zittito." msgid "Unsubscribed" msgstr "Abbonamento annullato" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Abbonati a %1$s, pagina %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7223,21 +7238,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Impossibile salvare l'abbonamento." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Impossibile salvare l'abbonamento." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7862,7 +7877,7 @@ msgid "Cancel" msgstr "Annulla" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Salva" @@ -7911,14 +7926,14 @@ msgid "Do not use this method!" msgstr "Non eliminare il messaggio" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Risposte a %1$s su %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Messaggi da %1$s su %2$s!" #. TRANS: Title. @@ -9605,15 +9620,15 @@ msgstr "Impossibile inserire un nuovo abbonamento." msgid "No oEmbed API endpoint available." msgstr "Messaggistica istantanea non disponibile." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Etichetta" +msgid "List" +msgstr "Collegamenti" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole " "o spazi" @@ -9636,11 +9651,11 @@ msgstr[1] "Descrivi il gruppo o l'argomento in %d caratteri" msgid "Delete this list." msgstr "Elimina questo utente" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9677,7 +9692,7 @@ msgstr "Abbonati" msgid "Subscribers to %1$s list by %2$s." msgstr "Abbonati a %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9703,7 +9718,7 @@ msgstr "Modifica impostazioni del profilo" msgid "Edit" msgstr "Modifica" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9716,48 +9731,57 @@ msgid "List Subscriptions" msgstr "Abbonamenti" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Abbonati a %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Messaggi con \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Messaggi con \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Messaggi famosi" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Modifica" +msgid "Edit lists" +msgstr "Non è un'etichetta valida di persona: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Etichette" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9770,11 +9794,12 @@ msgstr "Messaggi famosi" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Abbonati a %1$s, pagina %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Metodo delle API non trovato." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10413,16 +10438,16 @@ msgid "Choose a field to search." msgstr "Scegli un'etichetta per ridurre l'elenco" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10485,7 +10510,7 @@ msgid "Unsubscribe from this user" msgstr "Annulla l'abbonamento da questo utente" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10575,87 +10600,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Usa questo modulo per modificare il gruppo." +#~ msgid "No such people tag." +#~ msgstr "Nessuna etichetta." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Impossibile aggiornare il gruppo." +#~ msgid "Public people tag %s" +#~ msgstr "Attività pubblica, pagina %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Ripetizioni di %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Insieme delle etichette" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Risposte a %1$s, pagina %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Queste sono le etichette più usate e recenti su %s " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Ripetizioni di %s" +#~ msgid "People tag cloud" +#~ msgstr "Insieme delle etichette" + +#~ msgid "Tag %s" +#~ msgstr "Etichetta %s" + +#~ msgid "Tag user" +#~ msgstr "Etichette utente" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Risposte a %1$s, pagina %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problema nel salvare la casella della posta del gruppo." - -#~ msgid "Groups with most members" -#~ msgstr "I gruppi più numerosi" - -#~ msgid "Groups with most posts" -#~ msgstr "I gruppi con più messaggi" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Descrivi il gruppo o l'argomento" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Elimina questo utente" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Persone" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Etichetta" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Modifica impostazioni del profilo" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Modifica" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Persone di cui %s ha un abbonamento" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Tutti gli abbonamenti" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Persone" - -#~ msgid "User" -#~ msgstr "Utente" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Etichette nei messaggi di %s" - -#~ msgid "All subscriptions" -#~ msgstr "Tutti gli abbonamenti" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Persone" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Persone abbonate a %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index c4a32fb577..1956197a85 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:38+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -118,7 +118,7 @@ msgstr "アクセス設定の保存" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -156,9 +156,11 @@ msgstr "ログインしていません。" msgid "No such profile." msgstr "そのようなファイルはありません。" -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "そのようなタグはありません。" #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -180,7 +182,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "フォローしている" @@ -618,7 +620,7 @@ msgstr "フルネームが長すぎます。(255字まで)" #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2287,7 +2289,7 @@ msgid "Invalid alias: \"%s\"" msgstr "不正な別名: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "オプションが保存されました。" @@ -2310,11 +2312,6 @@ msgstr "有効なメールアドレスではありません。" msgid "No tagger or ID." msgstr "ニックネームがありません。" -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "そのようなタグはありません。" - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "ローカルユーザではありません。" @@ -4180,26 +4177,26 @@ msgstr "" msgid "People search" msgstr "ピープルサーチ" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "パブリックタイムライン、ページ %d" +msgid "Public list %s" +msgstr "パブリックタグクラウド" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "%1$s への返信、ページ %2$s" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** は %%site.name%% 上のユーザグループです。フリーソフトウェアツール" "[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." @@ -4321,10 +4318,12 @@ msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" "まだだれも [ハッシュタグ](%%doc.tags%%) 付きのつぶやきを投稿していません。" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" @@ -4345,24 +4344,24 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" "する短いメッセージを共有します。" -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" "まだだれも [ハッシュタグ](%%doc.tags%%) 付きのつぶやきを投稿していません。" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "%2$s 上の %1$s への返信!" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4746,48 +4745,48 @@ msgstr "" "net/)を基にした[マイクロブロギング](http://en.wikipedia.org/wiki/Micro-" "blogging) サービス。" -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "パブリックタグクラウド" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "これらは %s の人気がある最近のタグです " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" "まだだれも [ハッシュタグ](%%doc.tags%%) 付きのつぶやきを投稿していません。" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "投稿する1番目になってください!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "なぜ [アカウント登録](%%action.register%%) しないのですか。そして最初の投稿を" "してください!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "パブリックタグクラウド" +msgid "List cloud" +msgstr "API メソッドが見つかりません。" -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" #. TRANS: Public RSS feed description. %s is the StatusNet site name. @@ -5164,7 +5163,7 @@ msgstr "プロファイルサービスまたはマイクロブロギングサー #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5198,7 +5197,21 @@ msgstr "リクエストトークンを取得できません" msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "あなたはそのプロファイルにフォローされていません。" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5390,10 +5403,10 @@ msgstr "あなたはこのサイトのサンドボックスユーザができま msgid "User is already sandboxed." msgstr "ユーザはすでにサンドボックスです。" -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "有効なメールアドレスではありません。" #. TRANS: Page title for page showing self tags. @@ -5689,19 +5702,19 @@ msgid "Notice deleted." msgstr "つぶやきを削除しました。" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "ユーザ自身がつけたタグ %1$s - ページ %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "ユーザ自身がつけたタグ %1$s - ページ %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" @@ -5738,11 +5751,11 @@ msgid "" "yet." msgstr "これは%sとその友人のタイムラインですが、まだ誰も投稿していません。" -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5757,7 +5770,7 @@ msgstr "" msgid "Listed" msgstr "ライセンス" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6293,7 +6306,7 @@ msgstr "あなたはそのプロファイルにフォローされていません #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "グループを作るにはログインしていなければなりません。" #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6301,16 +6314,16 @@ msgstr "グループを作るにはログインしていなければなりませ msgid "No ID given." msgstr "ID引数がありません。" -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "ユーザ %1$s はグループ %2$s に参加できません。" -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s フォローされている、ページ %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6454,42 +6467,43 @@ msgstr "%s とタグ付けされたつぶやきフィード (Atom)" msgid "You cannot tag this user." msgstr "このユーザにメッセージを送ることはできません。" -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "ユーザプロファイル" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "タグ %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "制限" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Ajax エラー" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "ユーザプロファイル" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "タグユーザ" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "制限" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "タグ" +msgid "Lists" +msgstr "制限" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "自分自身についてのタグ (アルファベット、数字、-、.、_)、カンマまたは空白区切" @@ -6501,13 +6515,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "タグ" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "パスワードが保存されました。" #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "このフォームを使用して、フォロー者かフォローにタグを加えてください。" #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6530,10 +6545,10 @@ msgstr "ユーザはサイレンスではありません。" msgid "Unsubscribed" msgstr "フォロー解除済み" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s フォローされている、ページ %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7216,21 +7231,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "フォローを保存できません。" -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "フォローを保存できません。" #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7860,7 +7875,7 @@ msgid "Cancel" msgstr "中止" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "保存" @@ -7910,14 +7925,14 @@ msgid "Do not use this method!" msgstr "このつぶやきを削除できません。" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "%2$s 上の %1$s への返信!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "%1$s から %2$s 上の更新をしました!" #. TRANS: Title. @@ -9566,15 +9581,15 @@ msgstr "サブスクリプションを追加できません" msgid "No oEmbed API endpoint available." msgstr "IM が利用不可。" -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "タグ" +msgid "List" +msgstr "リンク" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "このユーザのタグ (アルファベット、数字、-、.、_)、カンマかスペース区切り" @@ -9595,11 +9610,11 @@ msgstr[0] "グループやトピックを %d 字以内記述" msgid "Delete this list." msgstr "このユーザを削除" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9636,7 +9651,7 @@ msgstr "フォローされている" msgid "Subscribers to %1$s list by %2$s." msgstr "%2$s 上の %1$s への返信!" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9662,7 +9677,7 @@ msgstr "プロファイル設定編集" msgid "Edit" msgstr "編集" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9675,48 +9690,57 @@ msgid "List Subscriptions" msgstr "フォロー" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "人々は %s をフォローしました。" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "%s で更新" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "%s で更新" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s、ページ %2$d" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "人気のつぶやき" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "編集" +msgid "Edit lists" +msgstr "有効なメールアドレスではありません。" + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "タグ" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9729,11 +9753,12 @@ msgstr "人気のつぶやき" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s フォローされている、ページ %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "API メソッドが見つかりません。" -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10362,15 +10387,15 @@ msgid "Choose a field to search." msgstr "タグを選んで、リストを狭くしてください" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s、ページ %2$d" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" +msgid "Add %1$s to list %2$s" msgstr "%1$s、ページ %2$d" #. TRANS: Title for top posters section. @@ -10434,7 +10459,7 @@ msgid "Unsubscribe from this user" msgstr "この利用者からのフォローを解除する" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10520,87 +10545,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "このフォームを使ってグループを編集します。" +#~ msgid "No such people tag." +#~ msgstr "そのようなタグはありません。" #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "グループを更新できません。" +#~ msgid "Public people tag %s" +#~ msgstr "パブリックタイムライン、ページ %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "%s の返信" +#~ msgid "Public people tag cloud" +#~ msgstr "パブリックタグクラウド" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "%1$s への返信、ページ %2$s" +#~ msgid "These are most used people tags on %s" +#~ msgstr "これらは %s の人気がある最近のタグです " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "%s の返信" +#~ msgid "People tag cloud" +#~ msgstr "パブリックタグクラウド" + +#~ msgid "Tag %s" +#~ msgstr "タグ %s" + +#~ msgid "Tag user" +#~ msgstr "タグユーザ" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "%1$s への返信、ページ %2$s" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "グループ受信箱を保存する際に問題が発生しました。" - -#~ msgid "Groups with most members" -#~ msgstr "メンバー数が多いグループ" - -#~ msgid "Groups with most posts" -#~ msgstr "投稿が多いグループ" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "グループやトピックを記述" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "このユーザを削除" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "人々" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "タグ" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "プロファイル設定編集" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "編集" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "人々 %s はフォロー" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s、ページ %2$d" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "すべてのフォロー" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "人々" - -#~ msgid "User" -#~ msgstr "ユーザ" - -#~ msgid "Tags in %s's notices" -#~ msgstr "%s のつぶやきのタグ" - -#~ msgid "All subscriptions" -#~ msgstr "すべてのフォロー" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "人々" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "人々は %s をフォローしました。" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "%1$s、ページ %2$d" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 671fa159c7..430b8d2772 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:39+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -112,7 +112,7 @@ msgstr "შეინახე შესვლის პარამეტრე #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -149,9 +149,11 @@ msgstr "ავტორიზებული არ ხართ." msgid "No such profile." msgstr "ასეთი პროფილი არ არსებობს." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "ასეთი სანიშნე არ არსებობს." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -174,7 +176,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "გამოწერილია" @@ -609,7 +611,7 @@ msgstr "სრული სახელი ძალიან გრძელი #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2262,7 +2264,7 @@ msgid "Invalid alias: \"%s\"" msgstr "" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "პარამეტრები შენახულია." @@ -2285,11 +2287,6 @@ msgstr "პიროვნებების არასწორი სან msgid "No tagger or ID." msgstr "მეტსახელი ან ID უცნობია." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "ასეთი სანიშნე არ არსებობს." - #. TRANS: Client error displayed when referring to non-local user. #, fuzzy msgid "Not a local user." @@ -4137,26 +4134,26 @@ msgstr "" msgid "People search" msgstr "პიროვნებების ძიება" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "საჯარო განახლებების ნაკადი, გვერდი %d" +msgid "Public list %s" +msgstr "საჯარო სანიშნეების ღრუბელი." -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "პასუხები %1$s–ს, გვერდი %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "რს არის %%site.name%%, [მიკრო–ბლოგინგის](http://en.wikipedia.org/wiki/Micro-" "blogging) სერვისი, დაფუძნებული უფასო [StatusNet](http://status.net/) კოდზე." @@ -4273,10 +4270,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "ჯერჯერობით არავის დაუპოსტავს შეტყობინება [hashtag](%%doc.tags%%)–ით." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "შეტყობინებები მონიშნული %1$s-ით, გვერდი %2$d" @@ -4295,23 +4294,23 @@ msgstr "" "რს არის %%site.name%%, [მიკრო–ბლოგინგის](http://en.wikipedia.org/wiki/Micro-" "blogging) სერვისი, დაფუძნებული უფასო [StatusNet](http://status.net/) კოდზე." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "ჯერჯერობით არავის დაუპოსტავს შეტყობინება [hashtag](%%doc.tags%%)–ით." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "%s-ს გამოწერა დასრულდა წარმატებით." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "შეტყობინებები მონიშნული %1$s-ით, გვერდი %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4688,45 +4687,45 @@ msgstr "" "რს არის %%site.name%%, [მიკრო–ბლოგინგის](http://en.wikipedia.org/wiki/Micro-" "blogging) სერვისი, დაფუძნებული უფასო [StatusNet](http://status.net/) კოდზე." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "საჯარო სანიშნეების ღრუბელი." -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "ეს არის ყველაზე პოპულარული სანიშნეები %s–ზე " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "ჯერჯერობით არავის დაუპოსტავს შეტყობინება [hashtag](%%doc.tags%%)–ით." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "დაპოსტე პირველმა!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "[დარეგისტრირდი](%%action.register%%) და დაპოსტე პირველმა!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "საჯარო სანიშნეების ღრუბელი." +msgid "List cloud" +msgstr "API მეთოდი ვერ მოიძებნა." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" #. TRANS: Public RSS feed description. %s is the StatusNet site name. @@ -5108,7 +5107,7 @@ msgstr "თქვენი პროფილის URL სხვა თავ #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5142,7 +5141,21 @@ msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" "თქვენ არ შეგიძლიათ გამოიწეროთ 0მბ-იანი 0.1 დაშორებული პროფილი ამ მოქმედებით." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5332,10 +5345,10 @@ msgstr "თქვენ ვერ შეძლებთ მომხმარე msgid "User is already sandboxed." msgstr "მომხმარებელი უკვე იზოლირებულია." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "პიროვნებების არასწორი სანიშნე: %s." #. TRANS: Page title for page showing self tags. @@ -5618,21 +5631,21 @@ msgid "Notice deleted." msgstr "" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "" "მომხმარებლები რომლებმაც საკუთარი თავი მონიშნეს როგორც %1$s – გვერდი %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "" "მომხმარებლები რომლებმაც საკუთარი თავი მონიშნეს როგორც %1$s – გვერდი %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "შეტყობინებები მონიშნული %1$s-ით, გვერდი %2$d" @@ -5671,11 +5684,11 @@ msgstr "" "ეს არის $s-ს და მეგობრების განახლებების ნაკადი, მაგრამ ჯერჯერობით არავის " "დაუპოსტავს." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5688,7 +5701,7 @@ msgstr "[დარეგისტრირდი](%%action.register%%) და msgid "Listed" msgstr "ლიცენზია" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6203,7 +6216,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "გჯუფის შესაქმნელად საჭიროა ავტორიზაცია." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6211,16 +6224,16 @@ msgstr "გჯუფის შესაქმნელად საჭირო msgid "No ID given." msgstr "ID უცნობია." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "ვერ მოხერხდა მომხმარებელ %1$s-სთან ერთად ჯგუფ %2$s-ში გაერთიანება." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s გამომწერი, გვერდი %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6364,42 +6377,43 @@ msgstr "შეტყობინებების RSS მონიშნულ msgid "You cannot tag this user." msgstr "ამ მომხმარებელს შეტყობინებას ვერ გაუგზავნი." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "მომხმარებლის პროფილი" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "სანიშნე %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "ზღვრები" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Ajax შეცდომა" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "მომხმარებლის პროფილი" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "მონიშნე მომხმარებელი" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "ზღვრები" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "სანიშნეები" +msgid "Lists" +msgstr "ზღვრები" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "საკუთარი სანიშნეები (ასოები, ციფრები, -, ., და _). გამოყავით მძიმით ან " @@ -6411,13 +6425,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "სანიშნეები" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "პაროლი შენახულია." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "გამოიყენეთ ეს ფორმა, რომ მიანიჭოთ სანიშნეები თქვენს გამოწერებს ან " "გამომწერებს." @@ -6442,10 +6457,10 @@ msgstr "მომხმარებელი არ არის დადუმ msgid "Unsubscribed" msgstr "გამოწერა გაუქმებულია" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s გამომწერი, გვერდი %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7140,21 +7155,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "გამოწერის წაშლა ვერ მოხერხდა." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "გამოწერის წაშლა ვერ მოხერხდა." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7775,7 +7790,7 @@ msgid "Cancel" msgstr "გაუქმება" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "შენახვა" @@ -7823,14 +7838,14 @@ msgid "Do not use this method!" msgstr "არ წაშალო ეს შეტყობინება" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "პასუხები %1$s–ს %2$s–ზე!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "%1$s-ს განახლებები %2$s-ზე!" #. TRANS: Title. @@ -9476,15 +9491,15 @@ msgstr "ახალი გამოწერის ჩასმა ვერ msgid "No oEmbed API endpoint available." msgstr "IM არ არის ხელმისაწვდომი." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "სანიშნე" +msgid "List" +msgstr "ბმულები" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "სანიშნეები ამ მომხმარებლისთვის (ასოები, ციფრები, -, ., და _). გამოყავით " "მძიმით ან სივრცით" @@ -9506,11 +9521,11 @@ msgstr[0] "არწერე ჯგუფი ან თემა %d სიმ msgid "Delete this list." msgstr "ამ მომხმარებლის წაშლა" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9547,7 +9562,7 @@ msgstr "გამომწერები" msgid "Subscribers to %1$s list by %2$s." msgstr "%s-ს გამოწერა დასრულდა წარმატებით." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9573,7 +9588,7 @@ msgstr "პროფილის პარამეტრების რედ msgid "Edit" msgstr "რედაქტირება" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9586,48 +9601,57 @@ msgid "List Subscriptions" msgstr "გამოწერები" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "%s-ს გამოწერა დასრულდა წარმატებით." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "განახლებები \"%s\"–თ" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "განახლებები \"%s\"–თ" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "პოპულარული შეტყობინებები" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "რედაქტირება" +msgid "Edit lists" +msgstr "პიროვნებების არასწორი სანიშნე: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "სანიშნეები" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9640,11 +9664,12 @@ msgstr "პოპულარული შეტყობინებები" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s გამომწერი, გვერდი %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "API მეთოდი ვერ მოიძებნა." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10276,16 +10301,16 @@ msgid "Choose a field to search." msgstr "სიის გასაფილტრად აირჩიე სანიშნე" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10348,7 +10373,7 @@ msgid "Unsubscribe from this user" msgstr "ამ მომხმარებლის გამოწერის გაუქმება" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10435,87 +10460,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "ჯგუფის რედაქტირებისათვის გამოიყენეთ ეს ფორმა." +#~ msgid "No such people tag." +#~ msgstr "ასეთი სანიშნე არ არსებობს." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "ჯგუფის განახლება ვერ მოხერხდა." +#~ msgid "Public people tag %s" +#~ msgstr "საჯარო განახლებების ნაკადი, გვერდი %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "პასუხები %s–ს" +#~ msgid "Public people tag cloud" +#~ msgstr "საჯარო სანიშნეების ღრუბელი." #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "პასუხები %1$s–ს, გვერდი %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "ეს არის ყველაზე პოპულარული სანიშნეები %s–ზე " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "პასუხები %s–ს" +#~ msgid "People tag cloud" +#~ msgstr "საჯარო სანიშნეების ღრუბელი." + +#~ msgid "Tag %s" +#~ msgstr "სანიშნე %s" + +#~ msgid "Tag user" +#~ msgstr "მონიშნე მომხმარებელი" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "პასუხები %1$s–ს, გვერდი %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "პრობლემა ჯგუფის ინდექსის შენახვისას." - -#~ msgid "Groups with most members" -#~ msgstr "ჯგუფები უმეტესი მომხმარებლებით" - -#~ msgid "Groups with most posts" -#~ msgstr "ჯგუფები უმეტესი პოსტებით" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "აღწერე ჯგუფი ან თემა" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "ამ მომხმარებლის წაშლა" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "ადამიანები" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "სანიშნე" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "პროფილის პარამეტრების რედაქტირება" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "რედაქტირება" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "თქვენ არ გაქვთ გამოწერილი ამ პროფილის განახლებები." +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "ყველა გამოწერა" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "ადამიანები" - -#~ msgid "User" -#~ msgstr "მომხმარებელი" - -#~ msgid "Tags in %s's notices" -#~ msgstr "%s-ს შეტყობინებებში გამოყენებული სანიშნეები" - -#~ msgid "All subscriptions" -#~ msgstr "ყველა გამოწერა" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "ადამიანები" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "უკვე გამოწერილია!" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index f0d6f0b75e..820b4bcae4 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:33+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:41+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -119,7 +119,7 @@ msgstr "접근 권한 설정 저장" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -156,9 +156,12 @@ msgstr "로그인하지 않았습니다." msgid "No such profile." msgstr "그런 프로필이 없습니다." -#. TRANS: Client error displayed trying to reference a non-existing people tag. -msgid "No such people tag." -msgstr "그런 사람 태그가 없습니다." +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +#, fuzzy +msgid "No such list." +msgstr "그런 태그가 없습니다." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. msgid "You cannot tag an OMB 0.1 remote profile with this action." @@ -180,7 +183,7 @@ msgstr "" "%s님에 태그를 붙이는데 문제가 발생했습니다. 원격 서버가 제대로 응답하지 않는 " "것 같습니다. 나중에 다시 시도해 보십시오." -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "구독했습니다" @@ -609,7 +612,7 @@ msgstr "실명이 너무 깁니다. (최대 255글자)" #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2195,7 +2198,7 @@ msgid "Invalid alias: \"%s\"" msgstr "사용할 수 없는 별칭: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "옵션을 저장했습니다." @@ -2217,11 +2220,6 @@ msgstr "사람 태그 %s 편집" msgid "No tagger or ID." msgstr "태그한 사용자나 아이디가 없습니다." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "그런 태그가 없습니다." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "해당 로컬 사용자가 없습니다." @@ -3989,26 +3987,26 @@ msgstr "" msgid "People search" msgstr "사람 검색" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. -#, php-format -msgid "Public people tag %s" -msgstr "공개 사람 태그 %s" +#. TRANS: Title for list page. +#. TRANS: %s is a list. +#, fuzzy, php-format +msgid "Public list %s" +msgstr "내 공개 사람 태그" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. -#, php-format -msgid "Public people tag %1$s, page %2$d" +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, fuzzy, php-format +msgid "Public list %1$s, page %2$d" msgstr "공개 사람 태그 %1$s, %2$d 페이지" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "사람 태그는 %%%%site.name%%%% 사이트에서 사람들을 분류하는 수단입니다. %%%%" "site.name%%%% 사이트는 자유소프트웨어 [StatusNet](http://status.net/) 소프트" @@ -4127,10 +4125,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "%s님은 [사람 태그](%%%%doc.tags%%%%%)를 아직 만들지 않았습니다." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "%1$s 태그가 붙은 글, %2$d 페이지" @@ -4153,23 +4153,23 @@ msgstr "" "면 해당 태그의 타임라인에 구독하는 식으로 간단히 이 사람들이 무슨 일을 하는" "지 알아 볼 수 있습니다." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "%s님은 아직 어느 누구도 [태그를 붙이지](%%%%doc.tags%%%%) 않았습니다." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "%2$s님이 %1$s 사람 태그를 붙인 구독자" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s" +msgstr "%2$s 사용자의 %1$s 태그 구독자." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "%2$s님이 %1$s 사람 태그를 붙인 구독자, %3$d 페이지" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4538,43 +4538,46 @@ msgstr "" "net/) 소프트웨어를 사용하는 [마이크로 블로깅](http://en.wikipedia.org/wiki/" "Micro-blogging) 서비스입니다." -#. TRANS: Title for page with public people tag cloud. -msgid "Public people tag cloud" -msgstr "공개 사람 태그 클라우드" +#. TRANS: Title for page with public list cloud. +#, fuzzy +msgid "Public list cloud" +msgstr "공개 태그 클라우드" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are most used people tags on %s" -msgstr "다음은 %s에서 가장 많이 사용하는 사람 태그입니다." +#, fuzzy, php-format +msgid "These are largest lists on %s" +msgstr "다음은 %s에서 가장 인기 있는 최근 태그입니다." -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +#, fuzzy, php-format +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "아직 아무도 [태그](%%doc.tags%%)가 없습니다." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. -msgid "Be the first to tag someone!" +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +#, fuzzy +msgid "Be the first to list someone!" msgstr "태그를 붙이는 첫번째 사람이 되세요!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "[계정을 등록해](%%action.register%%) 사람 태그를 붙이는 첫번째 사람이 되세요!" -#. TRANS: DT element on on page with public people tag cloud. -msgid "People tag cloud" -msgstr "사람 태그 클라우드" +#. TRANS: DT element on on page with public list cloud. +#, fuzzy +msgid "List cloud" +msgstr "목록이 없습니다." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" #. TRANS: Public RSS feed description. %s is the StatusNet site name. @@ -4930,7 +4933,7 @@ msgstr "다른 호환 마이크로블로깅 서비스의 자기 프로필 URL." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "구독" @@ -4958,7 +4961,23 @@ msgstr "요청 토큰을 얻을 수 없습니다." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "이 동작으로 OMB 0.1 원격 프로필에 태그를 붙이거나 제거할 수 없습니다." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, fuzzy, php-format +msgid "There was an unexpected error while listing %s." +msgstr "%s 사용자에 태그를 붙이는데 예상치 못한 오류가 발생했습니다." + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, fuzzy, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" +"%s님에 태그를 붙이는데 문제가 발생했습니다. 원격 서버가 제대로 응답하지 않는 " +"것 같습니다. 나중에 다시 시도해 보십시오." + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "태그 제거함" @@ -5144,10 +5163,10 @@ msgstr "이 사이트에서는 사용자에 대해 샌드박싱할 수 없습니 msgid "User is already sandboxed." msgstr "사용자가 이미 샌드박싱 상태입니다." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "올바른 사람 태그가 아닙니다: %s." #. TRANS: Page title for page showing self tags. @@ -5429,19 +5448,19 @@ msgid "Notice deleted." msgstr "글이 삭제되었습니다." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "내가 %1$s 태그를 붙인 사람들의 비공개 타임라인, %2$d 페이지" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "내가 %1$s 태그를 붙인 사람들의 비공개 타임라인, %2$d 페이지" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "%2$s님이 %1$s 태그를 붙인 사람들의 타임라인, %3$d 페이지" @@ -5480,11 +5499,11 @@ msgstr "" "%2$s님이 %1$s 태그를 붙인 사람들의 타임라인이지만, 아무도 아무 글도 올리지 않" "았습니다." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "더 많은 사람들에 태그를 붙여 보십시오." -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" @@ -5498,7 +5517,7 @@ msgstr "" msgid "Listed" msgstr "라이선스" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "모두 보기" @@ -5996,23 +6015,24 @@ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "이 동작으로 OMB 0.1 원격 프로필에 구독할 수 없습니다." #. TRANS: Client error displayed when trying to perform an action while not logged in. -msgid "You must be logged in to unsubscribe to a people tag." +#, fuzzy +msgid "You must be logged in to unsubscribe from a list." msgstr "사람 태그에서 구독 해제하려면 로그인해야 합니다." #. TRANS: Client error displayed when trying to perform an action without providing an ID. msgid "No ID given." msgstr "아이디가 없습니다." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. -#, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). +#, fuzzy, php-format +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "%1$s 사용자가 %2$s 사람 태그에 구독할 수 없습니다." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s님이 %3$s님이 만든 %2$s 사람 태그에 구독했습니다." #. TRANS: Header for list of subscribers for a user (first page). @@ -6153,38 +6173,42 @@ msgstr "%s 태그가 있는 글 피드 (Atom)" msgid "You cannot tag this user." msgstr "이 사용자에게 태그를 붙일 수 없습니다." -#. TRANS: Title for people tag form when not on a profile page. -msgid "Tag a profile" +#. TRANS: Title for list form when not on a profile page. +#, fuzzy +msgid "List a profile" msgstr "프로필에 태그 붙이기" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "태그 %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "제한" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" msgid "Error" msgstr "오류" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "사용자 프로필" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "사용자 태그" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "제한" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. +#, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "태그" +msgid "Lists" +msgstr "제한" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. +#, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "이 사용자의 태그 (문자,숫자,-, ., _ 문자로 구성), 쉼표나 공백으로 구분." @@ -6194,12 +6218,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "태그" -#. TRANS: Success message if people tags are saved. -msgid "Tags saved." +#. TRANS: Success message if lists are saved. +#, fuzzy +msgid "Lists saved." msgstr "태그를 저장헸습니다." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "다음 양식을 사용해 나를 구독한 사람이나 내가 구독한 사람에게 태그를 추가하십" "시오." @@ -6224,10 +6250,10 @@ msgstr "사용자가 벙어리 상태가 아닙니다." msgid "Unsubscribed" msgstr "구독 취소되었습니다." -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s님이 %3$s님이 만든 %2$s 사람 태그에서 구독 해제했습니다." #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -6880,21 +6906,23 @@ msgstr "" "이미 태그를 %d개 이상 만들었습니다. 태그 최대 개수입니다. 기존의 태그를 사용" "하거나 태그를 지우고 새로 만들어 보십시오." -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. -#, php-format +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. +#, fuzzy, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" "이미 %2$s 태그가 붙은 사람이 %1$d명 이상 있습니다. 최대값입니다. 같은 태그" "가 가진 사람의 태그를 제거해 보십시오." -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. -msgid "Adding people tag subscription failed." +#. TRANS: Exception thrown when inserting a list subscription in the database fails. +#, fuzzy +msgid "Adding list subscription failed." msgstr "사람 태그 구독 추가에 실패했습니다." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. -msgid "Removing people tag subscription failed." +#. TRANS: Exception thrown when deleting a list subscription from the database fails. +#, fuzzy +msgid "Removing list subscription failed." msgstr "사람 태그 구독 제거에 실패했습니다." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7485,7 +7513,7 @@ msgid "Cancel" msgstr "취소" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "저장" @@ -7531,14 +7559,14 @@ msgid "Do not use this method!" msgstr "이 메소드를 사용하지 마십시오!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" msgstr "%2$s님의 #%1$s 태그가 붙은 사람들에 대한 타임라인" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +#, fuzzy, php-format +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "%3$s 사이트의 %1$s님의 %2$s 사람들의 태그 업데이트" #. TRANS: Title. @@ -9131,13 +9159,15 @@ msgstr "새 구독을 새로 만들 수 없습니다." msgid "No oEmbed API endpoint available." msgstr "oEmbed API 엔드포인트가 없습니다." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. +#, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "태그" +msgid "List" +msgstr "링크" -#. TRANS: Field title for people tag. -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +#. TRANS: Field title for list. +#, fuzzy +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "태그 바꾸기. (문자, 숫자, -, ., _ 문자로 구성)" #. TRANS: Field title for description of list. @@ -9157,11 +9187,11 @@ msgstr[0] "사람 태그나 주제를 설명하십시오." msgid "Delete this list." msgstr "이 사용자 삭제." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "사람 추가 또는 제거." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgctxt "HEADER" msgid "Search" msgstr "검색" @@ -9196,7 +9226,7 @@ msgstr "구독자" msgid "Subscribers to %1$s list by %2$s." msgstr "%2$s 사용자의 %1$s 태그 구독자." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" msgstr "편집" @@ -9220,7 +9250,7 @@ msgstr "프로필 설정 편집." msgid "Edit" msgstr "편집" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. msgctxt "MODE" msgid "Private" msgstr "비공개" @@ -9232,47 +9262,56 @@ msgid "List Subscriptions" msgstr "구독" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "%s에 구독했습니다." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "\"%s\" 검색어가 있는 업데이트" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "\"%s\" 검색어가 있는 업데이트" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s 태그, %2$s 사용자가 붙임" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "나의 태그" +msgid "Your lists" +msgstr "인기있는 글" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. +#, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "태그 편집" +msgid "Edit lists" +msgstr "사람 태그 %s 편집" + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "태그" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9285,11 +9324,12 @@ msgstr "인기있는 글" msgid "Listed: %1$d Subscribers: %2$d" msgstr "태그 붙음:%1$d개 구독자: %2$d명" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "목록이 없습니다." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -9886,16 +9926,16 @@ msgid "Choose a field to search." msgstr "검색할 항목을 고르십시오." #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. -#, php-format -msgid "Untag %1$s as %2$s" -msgstr "%1$s 사용자에서 %2$s 태그 제거" +#. TRANS: %1$s is a nickname, $2$s is a list. +#, fuzzy, php-format +msgid "Remove %1$s from list %2$s" +msgstr "%1$s 태그, %2$s 사용자가 붙임" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. -#, php-format -msgid "Tag %1$s as %2$s" -msgstr "%1$s 사용자에 %2$s 태그 붙이기" +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. +#, fuzzy, php-format +msgid "Add %1$s to list %2$s" +msgstr "%1$s 태그, %2$s 사용자가 붙임" #. TRANS: Title for top posters section. msgid "Top posters" @@ -9954,7 +9994,7 @@ msgid "Unsubscribe from this user" msgstr "이 사용자에서 구독 해제" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "구독 해제" @@ -10036,74 +10076,44 @@ msgstr "XML이 잘못되었습니다. XRD 루트가 없습니다." msgid "Getting backup from file '%s'." msgstr "'%s' 파일에서 백업을 가져옵니다." -#~ msgid "Use this form to edit the people tag." -#~ msgstr "다음 양식을 이용해 사람 태그를 편집하십시오." +#~ msgid "No such people tag." +#~ msgstr "그런 사람 태그가 없습니다." -#~ msgid "Could not update people tag." -#~ msgstr "사람 태그를 업데이트할 수 없습니다." +#~ msgid "Public people tag %s" +#~ msgstr "공개 사람 태그 %s" -#~ msgid "People tags by you" -#~ msgstr "내 사람 태그" +#~ msgid "Subscribers of people tagged %1$s by %2$s" +#~ msgstr "%2$s님이 %1$s 사람 태그를 붙인 구독자" -#~ msgid "People tags by %s" -#~ msgstr "%s의 사람 태그" +#~ msgid "Public people tag cloud" +#~ msgstr "공개 사람 태그 클라우드" -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "%1$s님의 사람 태그, %2$d 페이지" +#~ msgid "These are most used people tags on %s" +#~ msgstr "다음은 %s에서 가장 많이 사용하는 사람 태그입니다." -#~ msgid "People tags for %s" -#~ msgstr "%s님에 붙은 사람 태그" +#~ msgid "People tag cloud" +#~ msgstr "사람 태그 클라우드" -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "%1$s님에 붙은 사람 태그, %2$d 페이지" +#~ msgid "Tag %s" +#~ msgstr "태그 %s" -#~ msgid "People tagged %s by you" -#~ msgstr "내가 %s 태그 붙인 사람" +#~ msgid "Tag user" +#~ msgstr "사용자 태그" -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "profile_tag 받은 쪽지함을 저장하는데 문제가 발생했습니다." +#~ msgctxt "LABEL" +#~ msgid "Tag" +#~ msgstr "태그" -#~ msgid "Groups with most members" -#~ msgstr "가장 회원수가 많은 그룹" +#~ msgctxt "LABEL" +#~ msgid "Tags by you" +#~ msgstr "나의 태그" -#~ msgid "Groups with most posts" -#~ msgstr "가장 게시글이 많은 그룹" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "태그 편집" -#~ msgid "Delete this people tag." -#~ msgstr "이 사람 태그 삭제." +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s 사용자에서 %2$s 태그 제거" -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "사람 태그" - -#~ msgctxt "MENU" -#~ msgid "Tagged" -#~ msgstr "태그 붙음" - -#~ msgid "Edit people tag settings." -#~ msgstr "사람 태그 설정을 편집합니다." - -#~ msgid "People tags with most subscribers" -#~ msgstr "구독자가 가장 많은 사람 태그" - -#~ msgid "People tag subscriptions" -#~ msgstr "사람 태그 구독" - -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "사람 태그" - -#~ msgid "User" -#~ msgstr "사용자" - -#~ msgid "Tags in %s's notices" -#~ msgstr "%s의 글에 있는 태그" - -#~ msgid "All subscriptions" -#~ msgstr "모든 구독" - -#~ msgid "People tags" -#~ msgstr "사람 태그" - -#~ msgid "People tags by %s." -#~ msgstr "%s님의 사람 태그." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "%1$s 사용자에 %2$s 태그 붙이기" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 2726a0576c..b54a905e7e 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -122,7 +122,7 @@ msgstr "Зачувај нагодувања на пристап" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -159,9 +159,11 @@ msgstr "Не сте најавени." msgid "No such profile." msgstr "Нема таков профил." -#. TRANS: Client error displayed trying to reference a non-existing people tag. -msgid "No such people tag." -msgstr "Нема таква ознака за луѓе." +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +msgid "No such list." +msgstr "Нема таков список." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. msgid "You cannot tag an OMB 0.1 remote profile with this action." @@ -183,7 +185,7 @@ msgstr "" "Се појави проблем при означувањето на %s. Веројатно далечинскиот опслужувач " "не одговара како што треба. Обидете се повторно." -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Претплатено" @@ -623,7 +625,7 @@ msgstr "Полното име е предолго (највеќе 255 знаци #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2236,33 +2238,28 @@ msgid "Invalid alias: \"%s\"" msgstr "Неважечки алијас: „%s“" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Нагодувањата се зачувани." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Бришење на ознакта за луѓе %s" +msgstr "Бришење списокот %s" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Уредување на ознаката за луѓе %s" +msgstr "Уредување списокот %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. msgid "No tagger or ID." msgstr "Нема означувач или назнака." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Нема таква ознака." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Не е локален корисник." @@ -2272,9 +2269,8 @@ msgid "You must be the creator of the tag to edit it." msgstr "Мора да сте создавачот на ознаката за да можете да ја уредувате." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "ОБразецов служи за уредување на групата." +msgstr "Образецов служи за уредување на списокот." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. msgid "Delete aborted." @@ -2307,9 +2303,8 @@ msgstr "" "сите нејзини постоечки претплати. Дали сакате да продолжите?" #. TRANS: TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "Не можев да го подновам корисникот." +msgstr "Не можев да го подновам списокот." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -4070,26 +4065,26 @@ msgstr "" msgid "People search" msgstr "Пребарување на луѓе" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. -#, php-format -msgid "Public people tag %s" -msgstr "Јавна ознака за луѓе %s" +#. TRANS: Title for list page. +#. TRANS: %s is a list. +#, fuzzy, php-format +msgid "Public list %s" +msgstr "Јавни списоци составени од Вас" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. -#, php-format -msgid "Public people tag %1$s, page %2$d" +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, fuzzy, php-format +msgid "Public list %1$s, page %2$d" msgstr "Јавна ознака за луѓе %1$s, страница %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "Ознаките за луѓе служат за подредување на слични лица на %%site.name%%, " "служба за [микроблогирање](http://mk.wikipedia.org/wiki/Микроблогирање) што " @@ -4103,15 +4098,15 @@ msgstr "Нема означувач." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Луѓе означени со %1$s од %2$s" +msgstr "Луѓе наведени во %1$s од %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Луѓе означени со %1$s од %2$s, страница %3$d" +msgstr "Луѓе наведени во %1$s од %2$s, страница %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. @@ -4119,45 +4114,41 @@ msgid "Creator" msgstr "Создавач" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Приватни ознаки на луѓе поставени од Вас" +msgstr "Приватни списоци составени од Вас" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Јавни ознаки на луѓе поставени од Вас" +msgstr "Јавни списоци составени од Вас" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Ознаки од Вас" +msgstr "Списоци од Вас" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Списоци од %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Забелешки на %1$s, страница %2$d" +msgstr "Списоци од %1$s, страница %2$d" #. TRANS: Client error displayed when trying view another user's private lists. -#, fuzzy msgid "You cannot view others' private lists" -msgstr "Не можете да гледате туѓи приватни ознаки." +msgstr "Не можете да гледате туѓи приватни списоци." #. TRANS: Mode selector label. msgid "Mode" msgstr "Режим" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Излезно сандаче за %s" +msgstr "Списоци за %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -4186,7 +4177,7 @@ msgstr "Оди" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4194,31 +4185,33 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"Ова се ознаки за луѓе создадени од **%s**. Ознаките за луѓе служат за " -"подредување на слични лица на %%%%site.name%%%%, служба за [микроблогирање]" -"(http://mk.wikipedia.org/wiki/Микроблогирање) што работи на слободната " -"програмска алатка [StatusNet](http://status.net/). Претплаќајќи се на " -"хронологијата на ознаката ќе можете лесно да следите што прават лицата." +"Ова се списоците направени од **%s**. Списоците служат за подредување на " +"слични лица на %%%%site.name%%%%, служба за [микроблогирање](http://mk." +"wikipedia.org/wiki/Микроблогирање) што работи на слободната програмска " +"алатка [StatusNet](http://status.net/). Претплаќајќи се на хронологијата на " +"ознаката ќе можете лесно да следите што прават лицата." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "%s сè уште нема создадено никакви [ознаки за луѓе](%%%%doc.tags%%%%)." +msgstr "%s сè уште нема направено ниеден [список](%%%%doc.lists%%%%)" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Списоци во коишто се наоѓа %s" -#, fuzzy, php-format +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Забелешки означени со %1$s, стр. %2$d" +msgstr "Списоци со %1$s, страница %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4226,47 +4219,47 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"Ова се ознаките за луѓе за **%s**. Ознаките за луѓе служат за подредување на " -"слични лица на %%%%site.name%%%%, служба за [микроблогирање](http://mk." -"wikipedia.org/wiki/Микроблогирање) што работи на слободната програмска " -"алатка [StatusNet](http://status.net/). Претплаќајќи се на хронологијата на " -"ознаката ќе можете лесно да следите што прават лицата." +"Ова се списоците за **%s**. Списоците служат за подредување на слични лица " +"на %%%%site.name%%%%, служба за [микроблогирање](http://mk.wikipedia.org/" +"wiki/Микроблогирање) што работи на слободната програмска алатка [StatusNet]" +"(http://status.net/). Претплаќајќи се на хронологијата на ознаката ќе можете " +"лесно да следите што прават лицата." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "%s сè уште не е [означен(а)](%%%%doc.tags%%%%) од никого." +msgstr "%s сè уште не е [наведен(а)](%%%%doc.lists%%%% на ничиј список." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "Претплатници на луѓе означени со %1$s од %2$s" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s" +msgstr "Претплатници на списокот %1$s од %2$s." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Претплатници на луѓе означени со %1$sод %2$s, страница %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Претплатено на %s." +msgstr "Списоци на коишто се има претплатено %s" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "Претплати на ознаки за луѓе на %1$s, стр. %2$d" +msgstr "Списоци на на коишто се има претплатено %1$s, страница %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4274,11 +4267,11 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"Ова се ознаки за луѓе на коишто се има претплатено **%s**. Ознаките за луѓе " -"служат за подредување на слични лица на %%%%site.name%%%%, служба за " -"[микроблогирање](http://mk.wikipedia.org/wiki/Микроблогирање) што работи на " -"слободната програмска алатка [StatusNet](http://status.net/). Претплаќајќи " -"се на хронологијата на ознаката ќе можете лесно да следите што прават лицата." +"Ова се списоци на коишто се има претплатено **%s**. Списоците служат за " +"подредување на слични лица на %%%%site.name%%%%, служба за [микроблогирање]" +"(http://mk.wikipedia.org/wiki/Микроблогирање) што работи на слободната " +"програмска алатка [StatusNet](http://status.net/). Претплаќајќи се на " +"хронологијата на ознаката ќе можете лесно да следите што прават лицата." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -4629,44 +4622,47 @@ msgstr "" "org/wiki/Микроблогирање) заснована на слободната програмска алатка " "[StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. -msgid "Public people tag cloud" -msgstr "Јавен облак од ознаки за луѓе" +#. TRANS: Title for page with public list cloud. +#, fuzzy +msgid "Public list cloud" +msgstr "Јавен облак од ознаки" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are most used people tags on %s" -msgstr "Ова се најкористените ознаки за луѓе на %s" +#, fuzzy, php-format +msgid "These are largest lists on %s" +msgstr "Овие се најпопуларните скорешни ознаки на %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +#, fuzzy, php-format +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Сè уште некој нема [означено](%%doc.tags%%) никого." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. -msgid "Be the first to tag someone!" +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +#, fuzzy +msgid "Be the first to list someone!" msgstr "Бидете првиот што ќе означи некого!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Зошто не [регистрирате сметка](%%action.register%%) и станете првиот што ќе " "означи некого!" -#. TRANS: DT element on on page with public people tag cloud. -msgid "People tag cloud" -msgstr "Јавен облак од ознаки за луѓе" +#. TRANS: DT element on on page with public list cloud. +#, fuzzy +msgid "List cloud" +msgstr "Списокот не е пронајден." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. -#, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +#. TRANS: Link title for number of listed people. %d is the number of listed people. +#, fuzzy, php-format +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "Означено е 1 лице" msgstr[1] "Означени се %d лица" @@ -5037,7 +5033,7 @@ msgstr "!URL на Вашиот профил на друга складна сл #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Претплати се" @@ -5067,7 +5063,23 @@ msgstr "" "Не можете да ставате и тргате ознаки на далечински профил OMB 0.1 со ова " "дејство." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, fuzzy, php-format +msgid "There was an unexpected error while listing %s." +msgstr "Се појави неочекувана грешка при означувањето на %s." + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, fuzzy, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" +"Се појави проблем при означувањето на %s. Веројатно далечинскиот опслужувач " +"не одговара како што треба. Обидете се повторно." + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "Ознаката е тргната" @@ -5259,10 +5271,10 @@ msgstr "Не можете да ставате корисници во песоч msgid "User is already sandboxed." msgstr "Корисникот е веќе во песочен режим." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Не е важечка ознака за луѓе: %s." #. TRANS: Page title for page showing self tags. @@ -5550,63 +5562,62 @@ msgid "Notice deleted." msgstr "Избришана забелешка" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "" -"Приватна хронологија за луѓе што сте ги означиле со %1$s, страница %2$d" +msgstr "Приватна хронологија за Ваш список %1$s, страница %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "Хронологија за луѓе што сте ги означиле со %1$s, страница %2$d" +msgstr "Хронологија за Ваш список %1$s, страница %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "Хронологија за луѓе означени со %1$s од %2$s, страница %3$d" +msgstr "Хронологија за Ваш список %1$s од %2$s, страница %3$d" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Private timeline of %s list by you" -msgstr "Приватна хронологија за луѓе што сте ги означиле со %s" +msgstr "Приватна хронологија за Вашиот список %s" #. TRANS: Title for public list timeline where the viewer is the tagger. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Timeline for %s list by you" -msgstr "Хронологија за луѓе што сте ги означиле со %s" +msgstr "Хронологија за Вашиот список %s" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Хронологија за луѓе означени со %1$s од %2$s" +msgstr "Хронологија за списокот %1$s од %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Канал за луѓе означени со %1$s од %2$s (Atom)" +msgstr "Канал за списокот %1$s од %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"Ова е хронологијата за луѓето означени со %1$s од %2$s, но досега никој нема " -"објавено ништо." +"Ова е хронологијата за списокот %1$s од %2$s, но досега никој нема објавено " +"ништо." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "Означете повеќе луѓе." -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" @@ -5617,11 +5628,10 @@ msgstr "" "оваа хронологија!" #. TRANS: Header on show list page. -#, fuzzy msgid "Listed" -msgstr "Лиценца" +msgstr "Наведени" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "Прикажи ги сите" @@ -6128,23 +6138,24 @@ msgstr "" "Не можете да се претплатите на OMB 0.1 далечински профил со ова дејство." #. TRANS: Client error displayed when trying to perform an action while not logged in. -msgid "You must be logged in to unsubscribe to a people tag." +#, fuzzy +msgid "You must be logged in to unsubscribe from a list." msgstr "Мора да сте најавени за откажете претплата од ознака за луѓе." #. TRANS: Client error displayed when trying to perform an action without providing an ID. msgid "No ID given." msgstr "Нема наведено назнака (ID)." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. -#, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). +#, fuzzy, php-format +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Не можам да го претплатам корисникот %1$s на ознаката за луѓе %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s се претплати на ознаката за луѓе %2$s од %3$s" #. TRANS: Header for list of subscribers for a user (first page). @@ -6246,7 +6257,6 @@ msgid "Subscription feed for %s (Atom)" msgstr "Канал со забелешки за %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "НП" @@ -6285,38 +6295,42 @@ msgstr "Канал со забелешки за ознаката %s (Atom)" msgid "You cannot tag this user." msgstr "Не можете да го означите овој корисник." -#. TRANS: Title for people tag form when not on a profile page. -msgid "Tag a profile" +#. TRANS: Title for list form when not on a profile page. +#, fuzzy +msgid "List a profile" msgstr "Означи профил" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Означи %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Списоци" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" msgid "Error" msgstr "Грешка" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Кориснички профил" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Означи корисник" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Списоци" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. +#, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Ознаки" +msgid "Lists" +msgstr "Списоци" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. +#, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Ознаки за овој корисник (букви, бројки, -, . и _), одделени со запирка или " @@ -6327,12 +6341,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Ознаки" -#. TRANS: Success message if people tags are saved. -msgid "Tags saved." +#. TRANS: Success message if lists are saved. +#, fuzzy +msgid "Lists saved." msgstr "Ознаката е зачувана." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "Со овој образец додавајте ознаки во Вашите претплатници или претплати." #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6355,10 +6371,10 @@ msgstr "Корисникот не е замолчен." msgid "Unsubscribed" msgstr "Претплатата е откажана" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s ја откажа претплатата на ознаката за луѓе %2$s од %3$s" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7039,22 +7055,24 @@ msgstr "" "Веќе имате создадено %d или повеќе ознаки, што претставува максималниот " "дозволен број на ознаки. Искористете или избришете некои постоечки ознаки." -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. -#, php-format +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. +#, fuzzy, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" "Веќе имате означено %1$d или повеќе луѓе со %2$s, што претставува " "максималниот дозволен број. Најпрвин отстранете ја истава ознака кај некои " "други лица." -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. -msgid "Adding people tag subscription failed." +#. TRANS: Exception thrown when inserting a list subscription in the database fails. +#, fuzzy +msgid "Adding list subscription failed." msgstr "Додавањето на претплатата на ознака за луѓе не успеа." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. -msgid "Removing people tag subscription failed." +#. TRANS: Exception thrown when deleting a list subscription from the database fails. +#, fuzzy +msgid "Removing list subscription failed." msgstr "Отстранувањето на претплатата на ознаката за луѓе не успеа." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7655,7 +7673,7 @@ msgid "Cancel" msgstr "Откажи" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Зачувај" @@ -7701,14 +7719,14 @@ msgid "Do not use this method!" msgstr "Не користете го овој метод!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" msgstr "Хронологија на лицата означени со #%1$s од %2$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +#, fuzzy, php-format +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Поднови од ознаката за луѓе %2$s на %1$s на %3$s!" #. TRANS: Title. @@ -8262,10 +8280,9 @@ msgstr "Групи" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Ограничувања" +msgstr "Списоци" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -8539,14 +8556,12 @@ msgid "Group actions" msgstr "Групни дејства" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Популарни забелешки" +msgstr "Популарни групи" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Сите групи" +msgstr "Активни групи" #. TRANS: Title for group tag cloud section. #. TRANS: %s is a group name. @@ -8639,10 +8654,9 @@ msgid "Transport cannot be null." msgstr "Преносот не може да биде ништо." #. TRANS: Button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "Покани нови корисници" +msgstr "Покани уште колеги" #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -9233,14 +9247,13 @@ msgid "Notices" msgstr "Забелешки" #. TRANS: Separator in profile addressees list. -#, fuzzy msgctxt "SEPARATOR" msgid ", " msgstr ", " #. TRANS: Start of profile addressees list. msgid " ▶ " -msgstr "" +msgstr " ▶ " #. TRANS: Used in coordinates as abbreviation of north. msgid "N" @@ -9336,59 +9349,57 @@ msgstr "Не можев да внесам нова претплата." msgid "No oEmbed API endpoint available." msgstr "Нема достапна крајна точка за oEmbed API." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. +#, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Ознака" +msgid "List" +msgstr "Список" -#. TRANS: Field title for people tag. -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +#. TRANS: Field title for list. +#, fuzzy +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "Смени ја ознаката (допуштени се букви, бројки, -, ., и _)." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "Опишете ја групата или темата." +msgstr "Опишете го списокот или темата." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "Опишете ја ознаката за луѓе или темата со највеќе %d знак" -msgstr[1] "Опишете ја ознаката за луѓе или темата со највеќе %d знаци" +msgstr[0] "Опишете го списокот или темата со највеќе %d знак" +msgstr[1] "Опишете ги списоците или темата со највеќе %d знаци" #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Избриши го корисников." +msgstr "Избриши го списоков." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "Додај или отстрани луѓе" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgctxt "HEADER" msgid "Search" msgstr "Пребарување" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Врски" +msgstr "Список" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "Ознака %1$s од %2$s." +msgstr "Список %1$s од %2$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Лиценца" +msgstr "Наведени" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. @@ -9398,113 +9409,119 @@ msgstr "Претплатници" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "Претплатници на ознаката %1$s од %2$s." +msgstr "Претплатници на списокот %1$s од %2$s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" msgstr "Уреди" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Уредете ја Вашата ознака %s." +msgstr "Уредете го Вашиот список %s." #. TRANS: Link description for link to list of users tagged with a tag. msgid "Tagged" msgstr "Означени" #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "Уреди нагодувања на профилот." +msgstr "Уреди нагодувања за списоци." #. TRANS: Text for link to edit list settings. msgid "Edit" msgstr "Уреди" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. msgctxt "MODE" msgid "Private" msgstr "Приватни" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "Претплати" +msgstr "Претплати на списоци" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "Претплатено на %s." +msgstr "Списоци на коишто се има претплатено %s." #. TRANS: Menu item in the group navigation page. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Подновувања со „%s“" +msgstr "Списоци со %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Подновувања со „%s“" +msgstr "Списоци со %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Списоци од %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "Ознака %1$s од %2$s." +msgstr "Списоци од %s." -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "Ознаки од Вас" +msgid "Your lists" +msgstr "Популарни списоци" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. +#, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Уреди ознаки" +msgid "Edit lists" +msgstr "Уредување списокот %s" + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "Ознаки" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Популарни забелешки" +msgstr "Популарни списоци" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "Означени: %1$d Претплатници: %2$d" +msgstr "Наведени: %1$d Претплатници: %2$d" -#, fuzzy, php-format +#. TRANS: Title for page that displays which lists current user is part of. +#, php-format msgid "Lists with you" -msgstr "Списокот не е пронајден." +msgstr "Списоци кајшто сте наведени" -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Подновувања со „%s“" +msgstr "Списоци со %s" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "Претплати на %s" +msgstr "Претплати на списоци" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -9595,14 +9612,12 @@ msgid "Search the site." msgstr "Пребарај по мрежното место." #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" msgstr "Следи" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Следи" +msgstr "Следбеници" #. TRANS: Label for user statistics. msgid "User ID" @@ -9626,9 +9641,8 @@ msgid "Groups" msgstr "Групи" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "Ограничувања" +msgstr "Списоци" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -9934,9 +9948,9 @@ msgstr "Групи кадешто членува %s." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "List subscriptions by %s." -msgstr "Ознаки за луѓе на коишто се има претплатено %s." +msgstr "Списоци на коишто се има претплатено %s." #. TRANS: Menu item in local navigation menu. msgctxt "MENU" @@ -10098,16 +10112,16 @@ msgid "Choose a field to search." msgstr "Одберете поле за пребарување." #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. -#, php-format -msgid "Untag %1$s as %2$s" -msgstr "Тргни ја ознаката %2$s од %1$s" +#. TRANS: %1$s is a nickname, $2$s is a list. +#, fuzzy, php-format +msgid "Remove %1$s from list %2$s" +msgstr "Список %1$s од %2$s." -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. -#, php-format -msgid "Tag %1$s as %2$s" -msgstr "Означи го/ја %1$s како %2$s" +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. +#, fuzzy, php-format +msgid "Add %1$s to list %2$s" +msgstr "Список %1$s од %2$s." #. TRANS: Title for top posters section. msgid "Top posters" @@ -10166,7 +10180,7 @@ msgid "Unsubscribe from this user" msgstr "Откажи претплата од овој корсиник" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Отпиши се" @@ -10253,77 +10267,44 @@ msgstr "Неважечки XML. Нема XRD-корен." msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." -#~ msgid "Use this form to edit the people tag." -#~ msgstr "ОБразецов служи за уредување на ознаката за луѓе." +#~ msgid "No such people tag." +#~ msgstr "Нема таква ознака за луѓе." -#~ msgid "Could not update people tag." -#~ msgstr "Не можев да ја подновам ознаката за луѓе." +#~ msgid "Public people tag %s" +#~ msgstr "Јавна ознака за луѓе %s" -#~ msgid "People tags by you" -#~ msgstr "Ознаки на луѓе поставени од Вас" +#~ msgid "Subscribers of people tagged %1$s by %2$s" +#~ msgstr "Претплатници на луѓе означени со %1$s од %2$s" -#~ msgid "People tags by %s" -#~ msgstr "Ознаки на луѓе од %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Јавен облак од ознаки за луѓе" -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Ознаки на луѓе од %1$s, страница %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Ова се најкористените ознаки за луѓе на %s" -#~ msgid "People tags for %s" -#~ msgstr "Ознаки на луѓе за %s" +#~ msgid "People tag cloud" +#~ msgstr "Јавен облак од ознаки за луѓе" -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Ознаки за луѓе за %1$s, страница %2$d" +#~ msgid "Tag %s" +#~ msgstr "Означи %s" -#~ msgid "People tagged %s by you" -#~ msgstr "Луѓе што сте ги означиле со %s" +#~ msgid "Tag user" +#~ msgstr "Означи корисник" -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Проблем при зачувувањето на приемното сандаче на profile_tag." +#~ msgctxt "LABEL" +#~ msgid "Tag" +#~ msgstr "Ознака" -#~ msgid "Groups with most members" -#~ msgstr "Групи со највеќе членови" +#~ msgctxt "LABEL" +#~ msgid "Tags by you" +#~ msgstr "Ознаки од Вас" -#~ msgid "Groups with most posts" -#~ msgstr "Групи со највеќе објави" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Уреди ознаки" -#~ msgid "Describe the people tag or topic." -#~ msgstr "Опишете ја ознаката за луѓе или темата." +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "Тргни ја ознаката %2$s од %1$s" -#~ msgid "Delete this people tag." -#~ msgstr "Избриши ја ознакава за луѓе." - -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Ознака за луѓе" - -#~ msgctxt "MENU" -#~ msgid "Tagged" -#~ msgstr "Означени" - -#~ msgid "Edit people tag settings." -#~ msgstr "Уреди нагодувања на ознаките за луѓе." - -#~ msgid "People tags with most subscribers" -#~ msgstr "Ознаки за луѓе со највеќе претплатници" - -#~ msgid "People tag subscriptions" -#~ msgstr "Претплати на ознаки за луѓе" - -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Ознаки за луѓе" - -#~ msgid "User" -#~ msgstr "Корисник" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Ознаки во забелешките на %s" - -#~ msgid "All subscriptions" -#~ msgstr "Сите претплати" - -#~ msgid "People tags" -#~ msgstr "Ознаки за луѓе" - -#~ msgid "People tags by %s." -#~ msgstr "Ознаки на луѓе од %s." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "Означи го/ја %1$s како %2$s" diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 835811a323..1e57c4cf5d 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:44+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -112,7 +112,7 @@ msgstr "അഭിഗമ്യതാ സജ്ജീകരണങ്ങൾ സേ #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -149,9 +149,11 @@ msgstr "ലോഗിൻ ചെയ്തിട്ടില്ല" msgid "No such profile." msgstr "" -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "അത്തരത്തിൽ ഒരു റ്റാഗില്ല." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -172,7 +174,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "" @@ -595,7 +597,7 @@ msgstr "പൂർണ്ണ നാമത്തിന്റെ നീളം വള #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2192,7 +2194,7 @@ msgid "Invalid alias: \"%s\"" msgstr "" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "ഐച്ഛികങ്ങൾ സേവ് ചെയ്തിരിക്കുന്നു." @@ -2215,11 +2217,6 @@ msgstr "ക്രമീകരണങ്ങളുടെ സജ്ജീകരണ msgid "No tagger or ID." msgstr "വിളിപ്പേരോ ഐ.ഡി.യോ ഇല്ല." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "അത്തരത്തിൽ ഒരു റ്റാഗില്ല." - #. TRANS: Client error displayed when referring to non-local user. #, fuzzy msgid "Not a local user." @@ -3992,26 +3989,26 @@ msgstr "" msgid "People search" msgstr "ആൾക്കാരെ തിരയുക" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" +msgid "Public list %s" msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "സ്വതന്ത്ര സോഫ്റ്റ്‌വേറായ [സ്റ്റാറ്റസ്‌നെറ്റ്](http://status.net/) ഉപകരണം ഉപയോഗിച്ച് [മൈക്രോ-" "ബ്ലോഗിങ്](http://en.wikipedia.org/wiki/Micro-blogging) സേവനം നൽകുന്ന %%site.name%" @@ -4129,10 +4126,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d" @@ -4152,24 +4151,24 @@ msgstr "" "ബ്ലോഗിങ്](http://en.wikipedia.org/wiki/Micro-blogging) സേവനം നൽകുന്ന %%site.name%" "% എന്ന സൈറ്റിൽ **%s** എന്നയാൾക്ക് അംഗത്വമുണ്ട്. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s" +msgstr "%2$s സംരംഭത്തിൽ %1$s എന്ന ഉപയോക്താവിന് അയച്ച മറുപടികൾ!" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" -msgstr "" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" +msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. @@ -4539,47 +4538,47 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "സമീപകാലത്ത് %s സൈറ്റിൽ ഏറ്റവും ജനപ്രിയമായ റ്റാഗുകൾ" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ വ്യക്തിയാകുക!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "എന്തുകൊണ്ട് [അംഗത്വമെടുക്കുകയും](%%action.register%%) പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ വ്യക്തിയാകുകയും " "ചെയ്തുകൂട!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "ഉപയോക്താക്കളെ തിരയുക" +msgid "List cloud" +msgstr "ഉപയോക്താവിനെ കണ്ടത്താനായില്ല." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -4933,7 +4932,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4962,7 +4961,21 @@ msgstr "അഭ്യർത്ഥനാ ചീട്ട് ലഭ്യമാക msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5140,11 +5153,11 @@ msgstr "" msgid "User is already sandboxed." msgstr "" -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." -msgstr "" +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." +msgstr "സാധുവായ ഇമെയിൽ വിലാസം അല്ല." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. @@ -5422,19 +5435,19 @@ msgid "Notice deleted." msgstr "അറിയിപ്പ് മായ്ച്ചിരിക്കുന്നു." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d" @@ -5471,11 +5484,11 @@ msgid "" "yet." msgstr "" -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5490,7 +5503,7 @@ msgstr "" msgid "Listed" msgstr "അനുമതി" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -5995,7 +6008,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "ഒരു സംഘം സൃഷ്ടിക്കാൻ താങ്കൾ ലോഗിൻ ചെയ്തിരിക്കണം." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6003,16 +6016,16 @@ msgstr "ഒരു സംഘം സൃഷ്ടിക്കാൻ താങ്ക msgid "No ID given." msgstr "ഐ.ഡി. ഇല്ല." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "%2$s എന്ന സംഘത്തിൽ %1$s എന്ന ഉപയോക്താവിനെ ചേർക്കാൻ കഴിഞ്ഞില്ല." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s എന്ന ഉപയോക്താവിന്റെ വരിക്കാർ, താൾ %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6148,41 +6161,42 @@ msgstr "" msgid "You cannot tag this user." msgstr "ഈ ഉപയോക്താവിന് സന്ദേശമയയ്ക്കാൻ താങ്കൾക്കാവില്ല." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "അജ്ഞാതമായ കുറിപ്പ്." -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "റ്റാഗ് %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "പരിധികൾ" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "അജാക്സ് പിഴവ്" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "ഉപയോക്താവിനെ റ്റാഗ് ചെയ്യുക" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "പരിധികൾ" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "റ്റാഗുകൾ" +msgid "Lists" +msgstr "പരിധികൾ" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" @@ -6192,13 +6206,13 @@ msgctxt "TITLE" msgid "Tags" msgstr "റ്റാഗുകൾ" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6221,10 +6235,10 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s എന്ന ഉപയോക്താവിന്റെ വരിക്കാർ, താൾ %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -6878,20 +6892,22 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. -msgid "Adding people tag subscription failed." -msgstr "" +#. TRANS: Exception thrown when inserting a list subscription in the database fails. +#, fuzzy +msgid "Adding list subscription failed." +msgstr "%s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാകലുകൾ" -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. -msgid "Removing people tag subscription failed." -msgstr "" +#. TRANS: Exception thrown when deleting a list subscription from the database fails. +#, fuzzy +msgid "Removing list subscription failed." +msgstr "ഈ വരിക്കാരനാകൽ നിരസിക്കുക." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. msgid "Missing profile." @@ -7494,7 +7510,7 @@ msgid "Cancel" msgstr "റദ്ദാക്കുക" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "സേവ് ചെയ്യുക" @@ -7541,14 +7557,14 @@ msgid "Do not use this method!" msgstr "ഈ മാർഗ്ഗം ഉപയോഗിക്കരുത്!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "%2$s സംരംഭത്തിൽ %1$s എന്ന ഉപയോക്താവിന് അയച്ച മറുപടികൾ!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "%2$s സൈറ്റിലെ %1$s സംഘാങ്ങളുടെ പുതുക്കലുകൾ!" #. TRANS: Title. @@ -9108,14 +9124,14 @@ msgstr "സന്ദേശം ഉൾപ്പെടുത്താൻ കഴി msgid "No oEmbed API endpoint available." msgstr "ഐ.എം. ലഭ്യമല്ല." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "റ്റാഗ്" +msgid "List" +msgstr "കണ്ണികൾ" -#. TRANS: Field title for people tag. -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +#. TRANS: Field title for list. +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" #. TRANS: Field title for description of list. @@ -9136,11 +9152,11 @@ msgstr[1] "സംഘത്തെക്കുറിച്ചോ വിഷയത msgid "Delete this list." msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യുക." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9177,7 +9193,7 @@ msgstr "വരിക്കാർ" msgid "Subscribers to %1$s list by %2$s." msgstr "%2$s സംരംഭത്തിൽ %1$s എന്ന ഉപയോക്താവിന് അയച്ച മറുപടികൾ!" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9203,7 +9219,7 @@ msgstr "ക്രമീകരണങ്ങളുടെ സജ്ജീകരണ msgid "Edit" msgstr "തിരുത്തുക" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9216,48 +9232,57 @@ msgid "List Subscriptions" msgstr "%s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാകലുകൾ" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "മുമ്പേ തന്നെ %s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാണ്." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "%s എന്നു റ്റാഗ് ചെയ്തിട്ടുള്ള അറിയിപ്പുകൾ" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "%s എന്നു റ്റാഗ് ചെയ്തിട്ടുള്ള അറിയിപ്പുകൾ" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s, താൾ %2$d" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "ജനപ്രിയ അറിയിപ്പുകൾ" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "തിരുത്തുക" +msgid "Edit lists" +msgstr "ക്രമീകരണങ്ങളുടെ സജ്ജീകരണം മാറ്റുക" + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "റ്റാഗുകൾ" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9270,11 +9295,12 @@ msgstr "ജനപ്രിയ അറിയിപ്പുകൾ" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s എന്ന ഉപയോക്താവിന്റെ വരിക്കാർ, താൾ %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "ഉപയോക്താവിനെ കണ്ടത്താനായില്ല." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -9895,15 +9921,15 @@ msgid "Choose a field to search." msgstr "" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s, താൾ %2$d" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" +msgid "Add %1$s to list %2$s" msgstr "%1$s, താൾ %2$d" #. TRANS: Title for top posters section. @@ -9966,7 +9992,7 @@ msgid "Unsubscribe from this user" msgstr "" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10055,71 +10081,37 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "സംഘത്തിൽ മാറ്റം വരുത്താൻ ഈ ഫോം ഉപയോഗിക്കുക." +#~ msgid "No such people tag." +#~ msgstr "അത്തരത്തിൽ ഒരു റ്റാഗില്ല." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "ഉപയോക്തൃ വിവരങ്ങൾ പുതുക്കാൻ കഴിഞ്ഞില്ല." +#~ msgid "These are most used people tags on %s" +#~ msgstr "സമീപകാലത്ത് %s സൈറ്റിൽ ഏറ്റവും ജനപ്രിയമായ റ്റാഗുകൾ" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "%s എന്ന ഉപയോക്താവിന്റെ ആവർത്തനങ്ങൾ" +#~ msgid "People tag cloud" +#~ msgstr "ഉപയോക്താക്കളെ തിരയുക" + +#~ msgid "Tag %s" +#~ msgstr "റ്റാഗ് %s" + +#~ msgid "Tag user" +#~ msgstr "ഉപയോക്താവിനെ റ്റാഗ് ചെയ്യുക" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d" - -#, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "%s എന്ന ഉപയോക്താവിന്റെ ആവർത്തനങ്ങൾ" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "സംഘത്തിന്റെ ഇൻബോക്സ് സേവ് ചെയ്യുന്നതിൽ പ്രശ്നമുണ്ടായി." - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "സംഘത്തെക്കുറിച്ചോ വിഷയത്തെക്കുറിച്ചോ വിവരിക്കുക" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "ഈ സംഘത്തെ മായ്ക്കുക." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "ജനങ്ങൾ" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "റ്റാഗ്" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "ക്രമീകരണങ്ങളുടെ സജ്ജീകരണം മാറ്റുക" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "തിരുത്തുക" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "എല്ലാ വരിക്കാരും" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s, താൾ %2$d" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "എല്ലാ വരിക്കാരും" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "ജനങ്ങൾ" - -#~ msgid "User" -#~ msgstr "ഉപയോക്താവ്" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "ജനങ്ങൾ" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "മുമ്പേ തന്നെ %s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാണ്." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "%1$s, താൾ %2$d" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 4acae36356..15ef09e15e 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:47+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -115,7 +115,7 @@ msgstr "Lagre tilgangsinnstillinger" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -152,9 +152,11 @@ msgstr "Ikke logget inn." msgid "No such profile." msgstr "Ingen slik profil." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Ingen slik side." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -176,7 +178,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. #, fuzzy msgid "Subscribed" @@ -613,7 +615,7 @@ msgstr "Fullt navn er for langt (maks 255 tegn)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2265,7 +2267,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Ugyldig alias: «%s»" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Lagret valg." @@ -2288,11 +2290,6 @@ msgstr "Ikke en gyldig personmerkelapp: %s." msgid "No tagger or ID." msgstr "ngen kallenavn eller ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Ingen slik side." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Ingen slik bruker." @@ -4118,26 +4115,26 @@ msgstr "" msgid "People search" msgstr "Personsøk" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Offentlig tidslinje, side %d" +msgid "Public list %s" +msgstr "Offentlig merkelappsky" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Svar til %1$s, side %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** er en brukergruppe på %%%%site.name%%%%, en [mikrobloggingstjeneste]" "(http://no.wikipedia.org/wiki/Mikroblogg) basert på det frie " @@ -4259,10 +4256,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Brukere som har merket seg selv med %1$s - side %2$d" @@ -4283,23 +4282,23 @@ msgstr "" "programvareverktøyet [StatusNet](http://status.net/). Dets medlemmer deler " "korte meldinger om deres liv og interesser. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Svar til %1$s på %2$s!" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Brukere som har merket seg selv med %1$s - side %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4681,47 +4680,47 @@ msgstr "" "Mikroblogg)tjeneste basert på det frie programvareverktøyet [StatusNet]" "(http://status.net)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Offentlig merkelappsky" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Dette er de siste mest populære merkelappene på %s " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Vær den første til å poste en!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Hvorfor ikke [registrere en konto](%%action.register%%) og vær den første " "til å poste en!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Offentlig merkelappsky" +msgid "List cloud" +msgstr "Bruker ikke funnet." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5102,7 +5101,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5134,7 +5133,21 @@ msgstr "Kunne ikke sette inn melding." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5321,10 +5334,10 @@ msgstr "Du kan ikke flytte brukere til sandkassen på dette nettstedet." msgid "User is already sandboxed." msgstr "Brukeren er allerede i sandkassen." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Ikke en gyldig personmerkelapp: %s." #. TRANS: Page title for page showing self tags. @@ -5620,19 +5633,19 @@ msgid "Notice deleted." msgstr "Notis slettet." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Brukere som har merket seg selv med %1$s - side %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Brukere som har merket seg selv med %1$s - side %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Brukere som har merket seg selv med %1$s - side %2$d" @@ -5669,11 +5682,11 @@ msgid "" "yet." msgstr "Dette er tidslinjen for %s og venner, men ingen har postet noe enda." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5688,7 +5701,7 @@ msgstr "" msgid "Listed" msgstr "Lisens" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6206,7 +6219,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Du må være innlogget for å opprette en gruppe." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6214,16 +6227,16 @@ msgstr "Du må være innlogget for å opprette en gruppe." msgid "No ID given." msgstr "Ingen vedlegg." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s gruppemedlemmer, side %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6357,42 +6370,43 @@ msgstr "Notismating for merkelapp %s (Atom)" msgid "You cannot tag this user." msgstr "Du kan ikke sende en melding til denne brukeren." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Brukerprofil" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Merk %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Grenser" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Ajax-feil" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Brukerprofil" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Merk bruker" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Grenser" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Tagger" +msgid "Lists" +msgstr "Grenser" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Merkelapper for degselv (bokstaver, nummer, -, ., og _), adskilt med komma " @@ -6404,14 +6418,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Tagger" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Passordet ble lagret" #. TRANS: Page notice. #, fuzzy -msgid "Use this form to add tags to your subscribers or subscriptions." +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "Bruk dette skjemaet for å redigere programmet ditt." #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6438,10 +6452,10 @@ msgstr "Bruker er allerede brakt til taushet." msgid "Unsubscribed" msgstr "Abonner" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s gruppemedlemmer, side %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7107,21 +7121,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Kunne ikke slette favoritt." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Kunne ikke slette favoritt." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7747,7 +7761,7 @@ msgid "Cancel" msgstr "Avbryt" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Lagre" @@ -7795,14 +7809,14 @@ msgid "Do not use this method!" msgstr "Ikke slett denne gruppen" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Svar til %1$s på %2$s!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Oppdateringar fra %1$s på %2$s!" #. TRANS: Title. @@ -9485,15 +9499,15 @@ msgstr "Kunne ikke sette inn bekreftelseskode." msgid "No oEmbed API endpoint available." msgstr "Direktemeldinger ikke tilgjengelig." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Tagger" +msgid "List" +msgstr "Lenker" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Merkelapper for degselv (bokstaver, nummer, -, ., og _), adskilt med komma " "eller mellomrom" @@ -9516,11 +9530,11 @@ msgstr[1] "Beskriv programmet ditt med %d tegn" msgid "Delete this list." msgstr "Slett denne brukeren" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9557,7 +9571,7 @@ msgstr "Abonnenter" msgid "Subscribers to %1$s list by %2$s." msgstr "Svar til %1$s på %2$s!" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9583,7 +9597,7 @@ msgstr "Endre profilinnstillinger" msgid "Edit" msgstr "Rediger" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9596,48 +9610,57 @@ msgid "List Subscriptions" msgstr "Abonnement" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Fjernabonner" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Oppdateringer med «%s»" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Oppdateringer med «%s»" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Populære notiser" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Rediger" +msgid "Edit lists" +msgstr "Ikke en gyldig personmerkelapp: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Tagger" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9650,11 +9673,12 @@ msgstr "Populære notiser" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s gruppemedlemmer, side %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Bruker ikke funnet." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10287,16 +10311,16 @@ msgid "Choose a field to search." msgstr "" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10360,7 +10384,7 @@ msgid "Unsubscribe from this user" msgstr "Abonner på denne brukeren" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10450,88 +10474,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Bruk dette skjemaet for å redigere gruppen." +#~ msgid "No such people tag." +#~ msgstr "Ingen slik side." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Kunne ikke oppdatere gruppe." +#~ msgid "Public people tag %s" +#~ msgstr "Offentlig tidslinje, side %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Repetisjoner av %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Offentlig merkelappsky" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Svar til %1$s, side %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Dette er de siste mest populære merkelappene på %s " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Repetisjoner av %s" +#~ msgid "People tag cloud" +#~ msgstr "Offentlig merkelappsky" + +#~ msgid "Tag %s" +#~ msgstr "Merk %s" + +#~ msgid "Tag user" +#~ msgstr "Merk bruker" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Svar til %1$s, side %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problem ved lagring av gruppeinnboks." - -#~ msgid "Groups with most members" -#~ msgstr "Grupper med flest medlemmer" - -#~ msgid "Groups with most posts" -#~ msgstr "Grupper med flest innlegg" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Beskriv programmet ditt" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Slett denne gruppen" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Personer" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Tagger" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Endre profilinnstillinger" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Rediger" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Fjernabonner" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Alle abonnementer" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Personer" - -#~ msgid "User" -#~ msgstr "Bruker" - -#, fuzzy -#~ msgid "Tags in %s's notices" -#~ msgstr "Bruker har ingen siste notis" - -#~ msgid "All subscriptions" -#~ msgstr "Alle abonnementer" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Personer" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Fjernabonner" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index f6028eb6a2..7572536143 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:39+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -122,7 +122,7 @@ msgstr "Toegangsinstellingen opslaan" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -161,9 +161,11 @@ msgstr "Niet aangemeld." msgid "No such profile." msgstr "Het profiel bestaat niet." -#. TRANS: Client error displayed trying to reference a non-existing people tag. -msgid "No such people tag." -msgstr "Onbekend persoonslabel." +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +msgid "No such list." +msgstr "De lijst bestaat niet." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. msgid "You cannot tag an OMB 0.1 remote profile with this action." @@ -188,7 +190,7 @@ msgstr "" "andere kant geeft waarschijnlijk geen correct antwoord. Probeer het later " "opnieuw." -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Geabonneerd" @@ -632,7 +634,7 @@ msgstr "De volledige naam is te lang (maximaal 255 tekens)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2263,33 +2265,28 @@ msgid "Invalid alias: \"%s\"" msgstr "Ongeldige alias: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "De instellingen zijn opgeslagen." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Persoonslabel %s verwijderen" +msgstr "Lijst %s verwijderen" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Persoonslabel %s bewerken" +msgstr "Lijst %s bewerken" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. msgid "No tagger or ID." msgstr "Geen labelaar of ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Onbekend label." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Dit is geen lokale gebruiker." @@ -2299,9 +2296,8 @@ msgid "You must be the creator of the tag to edit it." msgstr "U moet de maker van het label zijn om dit te kunnen bewerken." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Gebruik dit formulier om de groep te bewerken." +msgstr "Gebruik dit formulier om de lijst te bewerken." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. msgid "Delete aborted." @@ -2334,9 +2330,8 @@ msgstr "" "abonnementen verwijderd. Wilt u doorgaan?" #. TRANS: TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "Het was niet mogelijk de gebruiker bij te werken." +msgstr "Het was niet mogelijk de lijst bij te werken." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -2906,7 +2901,7 @@ msgstr "" #. TRANS: Link text on group page to create a new group. #. TRANS: Form legend for group edit form. msgid "Create a new group" -msgstr "Nieuwe groep aanmaken" +msgstr "Nieuwe groep maken" #. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site. #, php-format @@ -4105,32 +4100,31 @@ msgstr "" msgid "People search" msgstr "Gebruikers zoeken" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. -#, php-format -msgid "Public people tag %s" -msgstr "Openbaar persoonslabel %s" +#. TRANS: Title for list page. +#. TRANS: %s is a list. +#, fuzzy, php-format +msgid "Public list %s" +msgstr "Uw openbare lijsten" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. -#, php-format -msgid "Public people tag %1$s, page %2$d" +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, fuzzy, php-format +msgid "Public list %1$s, page %2$d" msgstr "Openbaar persoonslabel %1$s, pagina %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" -"Persoonslabels zijn een manier om gelijksoortige mensen te ordenen op %%site." -"name%%, een [microblogdienst](http://nl.wikipedia.org/wiki/Microblogging) " +"Lijsten zijn een manier om gelijksoortige mensen te ordenen op %%site.name%" +"%, een [microblogdienst](http://nl.wikipedia.org/wiki/Microblogging) " "gebaseerde op het vrije softwareprogramma [StatusNet](http://status.net/). U " -"kunt ze dan eenvoudig volgen door te abonneren op de tijdlijn van het " -"persoonslabel." +"kunt ze dan eenvoudig volgen door te abonneren op de tijdlijn van de lijst." #. TRANS: Client error displayed when a tagger is expected but not provided. msgid "No tagger." @@ -4138,15 +4132,15 @@ msgstr "Geen tagger." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Mensen met het label %1$s door %2$s" +msgstr "Mensen in de lijst %1$s van %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Mensen met het label %1$s door %2$s, pagina %3$d" +msgstr "Mensen in de lijst %1$s van %2$s, pagina %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. @@ -4154,45 +4148,41 @@ msgid "Creator" msgstr "Maker" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Uw privé persoonslabels" +msgstr "Uw privélijsten" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Openbare persoonslabels door u" +msgstr "Uw openbare lijsten" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Uw labels" +msgstr "Uw lijsten" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Lijsten van %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Mededelingen van %1$s, pagina %2$d" +msgstr "Lijsten van %1$s, pagina %2$d" #. TRANS: Client error displayed when trying view another user's private lists. -#, fuzzy msgid "You cannot view others' private lists" -msgstr "U kunt de private persoonslabels van andere gebruikers niet bekijken" +msgstr "U kunt de privélijsten van andere gebruikers niet bekijken" #. TRANS: Mode selector label. msgid "Mode" msgstr "Modus" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Postvak UIT voor %s" +msgstr "Lijsten waar %s in is opgenomen" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -4221,7 +4211,7 @@ msgstr "OK" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4229,32 +4219,33 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"Dit zijn de persoonslabels die zijn gemaakt door **%s**. Via persoonslabels " -"kunt u gelijksoortige mensen ordenen op %%%%site.name%%%%, a " -"[microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) service " -"gebaseerd op het vrije softwareprogramma [StatusNet](http://status.net/) " -"tool. U kunt eenvoudig bijhouden wat ze doen door te abonneren op de " -"tijdlijn van het label." +"Dit zijn de lijsten die zijn gemaakt door **%s**. Via lijsten kunt u " +"gelijksoortige mensen ordenen op %%%%site.name%%%%, a [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service gebaseerd op het vrije " +"softwareprogramma [StatusNet](http://status.net/). U kunt eenvoudig " +"bijhouden wat ze doen door te abonneren op de tijdlijn van de lijst." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "%s heeft nog geen [persoonslabels](%%%%doc.tags%%%%) gemaakt." +msgstr "%s heeft nog geen [lijsten](%%%%doc.tags%%%%) gemaakt." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Lijsten waar %s in is opgenomen" -#, fuzzy, php-format +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Mededelingen met het label %1$s, pagina %2$d" +msgstr "Lijsten waar %1$s in is opgenomen, pagina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4262,48 +4253,47 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"Dit zijn persoonslabels voor **%s**. U kunt persoonslabels gebruiken om " -"soortgelijke mensen te ordenen op %%%%site.name%%%%, een [microblogdienst]" -"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerde op het vrije " -"softwareprogramma [StatusNet](http://status.net/) tool. U kunt eenvoudig " -"bijhouden wat ze doen door te abonneren op de tijdlijn voor het label." +"Dit zijn lijsten van **%s**. U kunt lijsten gebruiken om soortgelijke mensen " +"te ordenen op %%%%site.name%%%%, een [microblogdienst](http://en.wikipedia." +"org/wiki/Micro-blogging) gebaseerde op het vrije softwareprogramma " +"[StatusNet](http://status.net/). U kunt eenvoudig bijhouden wat ze doen door " +"te abonneren op de tijdlijn van de lijst." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "" -"%s heeft nog geen [label](%%%%doc.tags%%%%) gekregen van andere mensen." +msgstr "%s is nog niemand in een [lijst](%%%%doc.tags%%%%) opgenomen." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "Abonnees op mensen met het label %1$s door %2$s" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s" +msgstr "Abonnees op de lijst %1$s van %2$s." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Abonnees op mensen met het label %1$s door %2$s, pagina %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Geabonneerd op %s." +msgstr "Lijsten waar %s op geabonneerd is" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "Persoonslabelabonnementen van %1$s, pagina %2$d" +msgstr "Lijsten waar %1$s op geabonneerd is, pagina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4311,12 +4301,11 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"Dit zijn persoonslabels waar **%s** op is geabonneerd. U kunt persoonslabels " -"gebruiken om soortgelijke mensen te ordenen op %%%%site.name%%%%, een " -"[microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) gebaseerde op " -"het vrije softwareprogramma [StatusNet](http://status.net/) tool. U kunt " -"eenvoudig bijhouden wat ze doen door te abonneren op de tijdlijn voor het " -"label." +"Dit zijn lijsten waar **%s** op is geabonneerd. U kunt lijsten gebruiken om " +"soortgelijke mensen te ordenen op %%%%site.name%%%%, een [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerde op het vrije " +"softwareprogramma [StatusNet](http://status.net/). U kunt eenvoudig " +"bijhouden wat ze doen door te abonneren op de tijdlijn voor de lijst." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -4665,44 +4654,47 @@ msgstr "" "Micro-blogging) gebaseerd op de Vrije Software [StatusNet](http://status." "net/)" -#. TRANS: Title for page with public people tag cloud. -msgid "Public people tag cloud" -msgstr "Woordwolk voor openbare persoonslabels" +#. TRANS: Title for page with public list cloud. +#, fuzzy +msgid "Public list cloud" +msgstr "Publieke woordwolk" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are most used people tags on %s" -msgstr "Dit zijn de meest gebruikte persoonslabels op %s" +#, fuzzy, php-format +msgid "These are largest lists on %s" +msgstr "De meest recente en populairste labels op %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +#, fuzzy, php-format +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Niemand heeft nog iemand [gelabeld](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. -msgid "Be the first to tag someone!" +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +#, fuzzy +msgid "Be the first to list someone!" msgstr "U kunt de eerste zijn die iemand labelt!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn " "die iemand labelt!" -#. TRANS: DT element on on page with public people tag cloud. -msgid "People tag cloud" -msgstr "Personenwoordwolk" +#. TRANS: DT element on on page with public list cloud. +#, fuzzy +msgid "List cloud" +msgstr "De lijst is niet aangetroffen." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. -#, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +#. TRANS: Link title for number of listed people. %d is the number of listed people. +#, fuzzy, php-format +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "Eén persoon gelabeld" msgstr[1] "%d personen gelabeld" @@ -5075,7 +5067,7 @@ msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Abonneren" @@ -5105,7 +5097,24 @@ msgstr "" "U kunt via deze handeling geen label toevoegen of verwijderen van een OMB " "1.0-profiel van een andere omgeving." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, fuzzy, php-format +msgid "There was an unexpected error while listing %s." +msgstr "Er is een onverwachte fout opgetreden tijdens het labelen van %s." + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, fuzzy, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" +"Er is een probleem opgetreden tijdens het labelen van %s. De omgeving aan de " +"andere kant geeft waarschijnlijk geen correct antwoord. Probeer het later " +"opnieuw." + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "Ongelabeld" @@ -5297,10 +5306,10 @@ msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." msgid "User is already sandboxed." msgstr "Deze gebruiker is al in de zandbak geplaatst." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Geen geldig gebruikerslabel: %s." #. TRANS: Page title for page showing self tags. @@ -5589,62 +5598,62 @@ msgid "Notice deleted." msgstr "Deze mededeling is verwijderd." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "Private tijdlijn voor mensen die u %1$s hebt gelabeld, pagina %2$d" +msgstr "Private tijdlijn voor mensen in uw lijst %1$s, pagina %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "Tijdlijn voor mensen die u %1$s hebt gelabeld, pagina %2$d" +msgstr "Tijdlijn voor mensen in uw lijst %1$s, pagina %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "Tijdlijn voor mensen die door %2$s met %1$s zijn gelabeld, pagina %3$d" +msgstr "Tijdlijn voor mensen in de lijst %1$s van %2$s, pagina %3$d" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Private timeline of %s list by you" -msgstr "Private tijdlijn voor mensen die u %s hebt gelabeld" +msgstr "Private tijdlijn voor mensen in uw lijst %s" #. TRANS: Title for public list timeline where the viewer is the tagger. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Timeline for %s list by you" -msgstr "Tijdlijn voor mensen die u %s hebt gelabeld" +msgstr "Tijdlijn voor mensen in uw lijst %s" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Tijdlijn voor mensen die door %2$s met %1$s zijn gelabeld" +msgstr "Tijdlijn voor mensen in de lijst %1$s van %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Feed voor mensen die door %2$s met %1$s zijn gelabeld (Atom)" +msgstr "Feed voor mensen in de lijst %1$s van %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"Dit is de tijdlijn voor mensen die door %2$s gelabeld zijn met %1$s, maar " -"niemand heeft nog mededelingen geplaatst." +"Dit is de tijdlijn voor mensen in de lijst %1$s van %2$s, maar niemand heeft " +"nog mededelingen geplaatst." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "Probeer meer mensen te labelen." -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" @@ -5655,11 +5664,10 @@ msgstr "" "volgen!" #. TRANS: Header on show list page. -#, fuzzy msgid "Listed" -msgstr "Licentie" +msgstr "In lijsten" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "Allemaal weergeven" @@ -6171,25 +6179,26 @@ msgstr "" "andere omgeving." #. TRANS: Client error displayed when trying to perform an action while not logged in. -msgid "You must be logged in to unsubscribe to a people tag." +#, fuzzy +msgid "You must be logged in to unsubscribe from a list." msgstr "U moet aangemeld zijn om uit te kunnen schrijven op een persoonslabel." #. TRANS: Client error displayed when trying to perform an action without providing an ID. msgid "No ID given." msgstr "Geen ID opgegeven." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. -#, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). +#, fuzzy, php-format +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "" "Het was niet mogelijk om gebruiker %1$s te abonneren op het persoonslabel %2" "$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s is geabonneerd op het persoonslabel %2$s van %3$s" #. TRANS: Header for list of subscribers for a user (first page). @@ -6292,7 +6301,6 @@ msgid "Subscription feed for %s (Atom)" msgstr "Abonneefeed voor %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "IM" @@ -6331,38 +6339,42 @@ msgstr "Mededelingenfeed voor label %s (Atom)" msgid "You cannot tag this user." msgstr "U kunt deze gebruiker niet labelen." -#. TRANS: Title for people tag form when not on a profile page. -msgid "Tag a profile" +#. TRANS: Title for list form when not on a profile page. +#, fuzzy +msgid "List a profile" msgstr "Profiel labelen" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Label %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Lijsten" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" msgid "Error" msgstr "Fout" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Gebruikersprofiel" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Gebruiker labelen" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Lijsten" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. +#, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Labels" +msgid "Lists" +msgstr "Lijsten" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. +#, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Labels voor deze gebruiker (letters, cijfers, -, ., en _). Gebruik komma's " @@ -6373,12 +6385,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Labels" -#. TRANS: Success message if people tags are saved. -msgid "Tags saved." +#. TRANS: Success message if lists are saved. +#, fuzzy +msgid "Lists saved." msgstr "De labels zijn opgeslagen." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Gebruik dit formulier om labels toe te voegen aan uw abonnementen of " "abonnees." @@ -6403,10 +6417,10 @@ msgstr "Deze gebruiker is niet gemuilkorfd." msgid "Unsubscribed" msgstr "Uitgeschreven" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s is uitgeschreven van het persoonslabel %2$s van %3$s" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7091,22 +7105,24 @@ msgstr "" "U hebt %d of meer labels aangemaakt. Meer labels aanmaken is niet mogelijk. " "Verwijder bestaande labels om nieuwe labels aan te kunnen maken." -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. -#, php-format +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. +#, fuzzy, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" "U hebt al %1$d of meer mensen gelabeld met %2$s. Meer mensen labelen is niet " "mogelijk. Verwijder eerst labels van mensen om nieuwe mensen te kunnen " "labelen." -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. -msgid "Adding people tag subscription failed." +#. TRANS: Exception thrown when inserting a list subscription in the database fails. +#, fuzzy +msgid "Adding list subscription failed." msgstr "Het abonneren op het persoonslabel is mislukt." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. -msgid "Removing people tag subscription failed." +#. TRANS: Exception thrown when deleting a list subscription from the database fails. +#, fuzzy +msgid "Removing list subscription failed." msgstr "Het uitschrijven van het persoonslabel is mislukt." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7719,7 +7735,7 @@ msgid "Cancel" msgstr "Annuleren" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Opslaan" @@ -7765,14 +7781,14 @@ msgid "Do not use this method!" msgstr "Gebruik deze methode niet!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" msgstr "Tijdlijn voor mensen die door %2$s met #%1$s zijn gelabeld" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +#, fuzzy, php-format +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "" "Mededelingen van gebruikers met het persoonslabel %2$s door %1$s op %3$s" @@ -8335,10 +8351,9 @@ msgstr "Groepen" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Limieten" +msgstr "Lijsten" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -8610,14 +8625,12 @@ msgid "Group actions" msgstr "Groepshandelingen" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Populaire mededelingen" +msgstr "Populaire groepen" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Alle groepen" +msgstr "Actieve groepen" #. TRANS: Title for group tag cloud section. #. TRANS: %s is a group name. @@ -8710,7 +8723,6 @@ msgid "Transport cannot be null." msgstr "Er moet een transportmethode worden opgegeven." #. TRANS: Button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" msgstr "Nieuwe gebruikers uitnodigen" @@ -9305,14 +9317,13 @@ msgid "Notices" msgstr "Mededelingen" #. TRANS: Separator in profile addressees list. -#, fuzzy msgctxt "SEPARATOR" msgid ", " msgstr ", " #. TRANS: Start of profile addressees list. msgid " ▶ " -msgstr "" +msgstr " ▶ " #. TRANS: Used in coordinates as abbreviation of north. msgid "N" @@ -9408,59 +9419,57 @@ msgstr "Kon nieuw abonnement niet toevoegen." msgid "No oEmbed API endpoint available." msgstr "Er is geen API-eindpunt beschikbaar." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. +#, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Label" +msgid "List" +msgstr "Lijst" -#. TRANS: Field title for people tag. -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +#. TRANS: Field title for list. +#, fuzzy +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "Wijzigen het label (letters, cijfers, -, ., en _ zijn toegestaan)." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "Beschrijf de groep of het onderwerp." +msgstr "Beschrijf de lijst of het onderwerp." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "Beschrijf het persoonslabel of anderwerp in %d teken of minder." -msgstr[1] "Beschrijf het persoonslabel of onderwerp in %d tekens of minder." +msgstr[0] "Beschrijf de lijst of het onderwerp in %d teken of minder." +msgstr[1] "Beschrijf de lijst of het onderwerp in %d tekens of minder." #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Deze gebruiker verwijderen." +msgstr "Deze lijst verwijderen." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "Mensen toevoegen of verwijderen" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgctxt "HEADER" msgid "Search" msgstr "Zoeken" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Verwijzingen" +msgstr "Lijst" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "Door %2$s als %1$s gelabeld" +msgstr "Lijst %1$s van %2$s" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Licentie" +msgstr "In lijst" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. @@ -9470,113 +9479,119 @@ msgstr "Abonnees" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "Abonnees op het label %1$s van %2$s." +msgstr "Abonnees op de lijst %1$s van %2$s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" msgstr "Bewerken" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Uw label %s bewerken." +msgstr "Uw lijst %s bewerken." #. TRANS: Link description for link to list of users tagged with a tag. msgid "Tagged" msgstr "Gelabeld" #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "Profielinstellingen bewerken." +msgstr "Lijstinstellingen bewerken." #. TRANS: Text for link to edit list settings. msgid "Edit" msgstr "Bewerken" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. msgctxt "MODE" msgid "Private" msgstr "Privé" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "Abonnementen" +msgstr "Lijstabonnementen" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "Geabonneerd op %s." +msgstr "Lijstabonnementen van %s." #. TRANS: Menu item in the group navigation page. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Updates met \"%s\"" +msgstr "Lijsten waar %s in staat" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Updates met \"%s\"" +msgstr "Lijsten waar %s in staat." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Lijsten van %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "Door %2$s als %1$s gelabeld" +msgstr "Lijsten van %s." -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "Uw labels" +msgid "Your lists" +msgstr "Populaire lijsten" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. +#, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Labels bewerken" +msgid "Edit lists" +msgstr "Lijst %s bewerken" + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "Labels" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Populaire mededelingen" +msgstr "Populaire lijsten" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "Gelabeld: %1$d Abonnees: %2$d" +msgstr "Mensen in lijst: %1$d Abonnees: %2$d" -#, fuzzy, php-format +#. TRANS: Title for page that displays which lists current user is part of. +#, php-format msgid "Lists with you" -msgstr "De lijst is niet aangetroffen." +msgstr "Lijsten waar u in staat" -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Updates met \"%s\"" +msgstr "Lijsten waar %s in staat" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "Abonnementen van %s" +msgstr "Lijstabonnementen" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -9667,14 +9682,12 @@ msgid "Search the site." msgstr "De site doorzoeken." #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Volgen" +msgstr "Abonnementen" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Volgen" +msgstr "Abonnees" #. TRANS: Label for user statistics. msgid "User ID" @@ -9698,9 +9711,8 @@ msgid "Groups" msgstr "Groepen" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "Limieten" +msgstr "Lijsten" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -10006,9 +10018,9 @@ msgstr "Groepen waar %s lid van is." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "List subscriptions by %s." -msgstr "Persoonslabelabonnementen van %s" +msgstr "Lijstabonnementen van %s." #. TRANS: Menu item in local navigation menu. msgctxt "MENU" @@ -10180,16 +10192,16 @@ msgid "Choose a field to search." msgstr "Kies een veld om te doorzoeken." #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. -#, php-format -msgid "Untag %1$s as %2$s" -msgstr "Label %2$s van %1$s verwijderen" +#. TRANS: %1$s is a nickname, $2$s is a list. +#, fuzzy, php-format +msgid "Remove %1$s from list %2$s" +msgstr "Lijst %1$s van %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. -#, php-format -msgid "Tag %1$s as %2$s" -msgstr "Label %2$s aan %1$s toevoegen" +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. +#, fuzzy, php-format +msgid "Add %1$s to list %2$s" +msgstr "Lijst %1$s van %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10248,7 +10260,7 @@ msgid "Unsubscribe from this user" msgstr "Uitschrijven van deze gebruiker" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Abonnement opheffen" @@ -10334,79 +10346,44 @@ msgstr "Ongeldige XML. De XRD-root mist." msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Gebruik dit formulier om het persoonslabel te bewerken." +#~ msgid "No such people tag." +#~ msgstr "Onbekend persoonslabel." -#~ msgid "Could not update people tag." -#~ msgstr "Het was niet mogelijk het persoonslabel bij te werken." +#~ msgid "Public people tag %s" +#~ msgstr "Openbaar persoonslabel %s" -#~ msgid "People tags by you" -#~ msgstr "Persoonslabels door u" +#~ msgid "Subscribers of people tagged %1$s by %2$s" +#~ msgstr "Abonnees op mensen met het label %1$s door %2$s" -#~ msgid "People tags by %s" -#~ msgstr "Persoonslabels door %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Woordwolk voor openbare persoonslabels" -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Persoonslabels door %1$s, pagina %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Dit zijn de meest gebruikte persoonslabels op %s" -#~ msgid "People tags for %s" -#~ msgstr "Persoonslabels voor %s" +#~ msgid "People tag cloud" +#~ msgstr "Personenwoordwolk" -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Persoonslabels voor %1$s, pagina %2$d" +#~ msgid "Tag %s" +#~ msgstr "Label %s" -#~ msgid "People tagged %s by you" -#~ msgstr "Mensen die u met %s gelabeld hebt." +#~ msgid "Tag user" +#~ msgstr "Gebruiker labelen" -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "" -#~ "Er is een probleem opgetreden tijdens het opslaan van het Postvak IN van " -#~ "profile_tag." +#~ msgctxt "LABEL" +#~ msgid "Tag" +#~ msgstr "Label" -#~ msgid "Groups with most members" -#~ msgstr "Groepen met de meeste leden" +#~ msgctxt "LABEL" +#~ msgid "Tags by you" +#~ msgstr "Uw labels" -#~ msgid "Groups with most posts" -#~ msgstr "Groepen met de meeste berichten" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Labels bewerken" -#~ msgid "Describe the people tag or topic." -#~ msgstr "Beschrijf het persoonslabel of het onderwerp." +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "Label %2$s van %1$s verwijderen" -#~ msgid "Delete this people tag." -#~ msgstr "Dit persoonslabel verwijderen." - -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Persoonslabel" - -#~ msgctxt "MENU" -#~ msgid "Tagged" -#~ msgstr "Gelabeld" - -#~ msgid "Edit people tag settings." -#~ msgstr "Persoonslabelinstellingen bewerken." - -#~ msgid "People tags with most subscribers" -#~ msgstr "Persoonslabels met de meeste abonnees" - -#~ msgid "People tag subscriptions" -#~ msgstr "Persoonslabelabonnementen" - -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Persoonslabels" - -#~ msgid "User" -#~ msgstr "Gebruiker" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Labels in de mededelingen van %s" - -#~ msgid "All subscriptions" -#~ msgstr "Alle abonnementen" - -#~ msgid "People tags" -#~ msgstr "Persoonslabels" - -#~ msgid "People tags by %s." -#~ msgstr "Persoonslabels door %s." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "Label %2$s aan %1$s toevoegen" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index e800baf5d3..d6e76b3edf 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:49+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -117,7 +117,7 @@ msgstr "Zapisz ustawienia dostępu" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -154,9 +154,11 @@ msgstr "Niezalogowany." msgid "No such profile." msgstr "Nie ma takiego profilu." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Nie ma takiego znacznika." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -180,7 +182,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Subskrybowano" @@ -624,7 +626,7 @@ msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2262,7 +2264,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Nieprawidłowy alias: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Zapisano opcje." @@ -2285,11 +2287,6 @@ msgstr "Nieprawidłowy znacznik osób: %s." msgid "No tagger or ID." msgstr "Brak pseudonimu lub identyfikatora." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Nie ma takiego znacznika." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Brak takiego użytkownika." @@ -4128,26 +4125,26 @@ msgstr "" msgid "People search" msgstr "Wyszukiwanie osób" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Publiczna oś czasu, strona %d" +msgid "Public list %s" +msgstr "Publiczna chmura znaczników" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "odpowiedzi dla użytkownika %1$s, strona %2$s" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " "[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " @@ -4269,10 +4266,12 @@ msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" "Nikt jeszcze nie wysłał wpisu za pomocą [znacznika mieszania](%%doc.tags%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Wpisy ze znacznikiem %1$s, strona %2$d" @@ -4293,24 +4292,24 @@ msgstr "" "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " "krótkimi wiadomościami o swoim życiu i zainteresowaniach. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" "Nikt jeszcze nie wysłał wpisu za pomocą [znacznika mieszania](%%doc.tags%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Subskrybowano użytkownika %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "%1$s nadał etykietę %2$s, strona %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4692,48 +4691,48 @@ msgstr "" "To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" "Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Publiczna chmura znaczników" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "To są najpopularniejsze ostatnie znaczniki w witrynie %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" "Nikt jeszcze nie wysłał wpisu za pomocą [znacznika mieszania](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Zostań pierwszym, który go wyśle." -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " "pierwszym, który go wyśle." -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Publiczna chmura znaczników" +msgid "List cloud" +msgstr "Nie odnaleziono strony." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -5113,7 +5112,7 @@ msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5146,7 +5145,21 @@ msgstr "" "Nie można subskrybować zdalnego profilu profilu OMB 0.1 za pomocą tej " "czynności." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5335,10 +5348,10 @@ msgstr "Nie można ograniczać użytkowników na tej witrynie." msgid "User is already sandboxed." msgstr "Użytkownik jest już ograniczony." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Nieprawidłowy znacznik osób: %s." #. TRANS: Page title for page showing self tags. @@ -5635,19 +5648,19 @@ msgid "Notice deleted." msgstr "Usunięto wpis." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Użytkownicy używający znacznika %1$s - strona %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Użytkownicy używający znacznika %1$s - strona %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "%1$s nadał etykietę %2$s, strona %3$d" @@ -5686,11 +5699,11 @@ msgstr "" "To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie " "wysłał." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5705,7 +5718,7 @@ msgstr "" msgid "Listed" msgstr "Licencja" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6232,7 +6245,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Musisz być zalogowany, aby utworzyć grupę." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6240,16 +6253,16 @@ msgstr "Musisz być zalogowany, aby utworzyć grupę." msgid "No ID given." msgstr "Brak parametru identyfikatora." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Subskrybenci użytkownika %1$s, strona %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6392,42 +6405,43 @@ msgstr "Kanał wpisów dla znacznika %s (Atom)" msgid "You cannot tag this user." msgstr "Nie można wysłać wiadomości do tego użytkownika." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Profil użytkownika" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Znacznik %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Ograniczenia" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Błąd AJAX" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Profil użytkownika" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Znacznik użytkownika" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Ograniczenia" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Znaczniki" +msgid "Lists" +msgstr "Ograniczenia" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " @@ -6439,13 +6453,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Znaczniki" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Zapisano hasło." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." @@ -6469,10 +6484,10 @@ msgstr "Użytkownik nie jest wyciszony." msgid "Unsubscribed" msgstr "Zrezygnowano z subskrypcji" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Subskrybenci użytkownika %1$s, strona %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7173,21 +7188,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Nie można usunąć subskrypcji." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Nie można usunąć subskrypcji." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7809,7 +7824,7 @@ msgid "Cancel" msgstr "Anuluj" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Zapisz" @@ -7856,14 +7871,14 @@ msgid "Do not use this method!" msgstr "Nie należy używać tej metody." #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "odpowiedzi dla użytkownika %1$s na %2$s." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Aktualizacje z %1$s na %2$s." #. TRANS: Title. @@ -9553,15 +9568,15 @@ msgstr "Nie można wprowadzić nowej subskrypcji." msgid "No oEmbed API endpoint available." msgstr "Komunikator nie jest dostępny." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Znacznik" +msgid "List" +msgstr "Odnośniki" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone " "przecinkami lub spacjami" @@ -9585,11 +9600,11 @@ msgstr[2] "Opisz grupę lub temat w %d znakach lub mniej." msgid "Delete this list." msgstr "Usuń tego użytkownika" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9626,7 +9641,7 @@ msgstr "Subskrybenci" msgid "Subscribers to %1$s list by %2$s." msgstr "Subskrybowano użytkownika %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9652,7 +9667,7 @@ msgstr "Zmodyfikuj ustawienia profilu" msgid "Edit" msgstr "Edycja" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9665,48 +9680,57 @@ msgid "List Subscriptions" msgstr "Subskrypcje" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Subskrybowano użytkownika %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Aktualizacje z \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Aktualizacje z \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Popularne wpisy" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Edycja" +msgid "Edit lists" +msgstr "Nieprawidłowy znacznik osób: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Znaczniki" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9719,11 +9743,12 @@ msgstr "Popularne wpisy" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Subskrybenci użytkownika %1$s, strona %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Nie odnaleziono strony." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10365,16 +10390,16 @@ msgid "Choose a field to search." msgstr "Wybierz znacznik do ograniczonej listy" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10436,7 +10461,7 @@ msgid "Unsubscribe from this user" msgstr "Zrezygnuj z subskrypcji tego użytkownika" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10531,87 +10556,45 @@ msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Użyj tego formularza, aby zmodyfikować grupę." +#~ msgid "No such people tag." +#~ msgstr "Nie ma takiego znacznika." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Nie można zaktualizować grupy." +#~ msgid "Public people tag %s" +#~ msgstr "Publiczna oś czasu, strona %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Powtórzenia %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Publiczna chmura znaczników" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "odpowiedzi dla użytkownika %1$s, strona %2$s" +#~ msgid "These are most used people tags on %s" +#~ msgstr "To są najpopularniejsze ostatnie znaczniki w witrynie %s" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Powtórzenia %s" +#~ msgid "People tag cloud" +#~ msgstr "Publiczna chmura znaczników" + +#~ msgid "Tag %s" +#~ msgstr "Znacznik %s" + +#~ msgid "Tag user" +#~ msgstr "Znacznik użytkownika" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "odpowiedzi dla użytkownika %1$s, strona %2$s" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." - -#~ msgid "Groups with most members" -#~ msgstr "Grupy z największą liczbą członków" - -#~ msgid "Groups with most posts" -#~ msgstr "Grupy z największą ilością wpisów" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Opisz grupę lub temat" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Usuń tę grupę" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Osoby" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Znacznik" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Zmodyfikuj ustawienia profilu" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Edycja" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Osoby %s subskrybowane do" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Wszystkie subskrypcje" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Osoby" - -#~ msgid "User" -#~ msgstr "Użytkownik" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Znaczniki we wpisach użytkownika %s" - -#~ msgid "All subscriptions" -#~ msgstr "Wszystkie subskrypcje" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Osoby" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Osoby subskrybowane do %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 5fb6ac9375..d5b110dc8d 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:51+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -120,7 +120,7 @@ msgstr "Gravar configurações de acesso" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -157,9 +157,11 @@ msgstr "Não iniciou sessão." msgid "No such profile." msgstr "Perfil não foi encontrado." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Categoria não foi encontrada." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -181,7 +183,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Subscrito" @@ -618,7 +620,7 @@ msgstr "Nome completo demasiado longo (máx. 255 caracteres)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2230,7 +2232,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Nome alternativo inválido: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Opções gravadas." @@ -2253,11 +2255,6 @@ msgstr "Categoria de pessoas inválida: %s." msgid "No tagger or ID." msgstr "Nenhum utilizador ou ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Categoria não foi encontrada." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "O utilizador não é local." @@ -4097,26 +4094,26 @@ msgstr "" msgid "People search" msgstr "Pesquisa de pessoas" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Notas públicas, página %d" +msgid "Public list %s" +msgstr "Nuvem de categorias pública" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Respostas a %1$s, página %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** é um grupo de utilizadores no site %%%%site.name%%%%, um serviço de " "[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado no " @@ -4237,10 +4234,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "Ainda ninguém publicou uma nota com uma [categoria](%%doc.tags%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Notas categorizadas com %1$s, página %2$d" @@ -4261,23 +4260,23 @@ msgstr "" "programa de Software Livre [StatusNet](http://status.net/). Os membros deste " "grupo partilham mensagens curtas acerca das suas vidas e interesses. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "Ainda ninguém publicou uma nota com uma [categoria](%%doc.tags%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Subscreveu %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Notas categorizadas com %1$s, página %2$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4661,47 +4660,47 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) baseado no programa de Software Livre " "[StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Nuvem de categorias pública" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Estas são as categorias recentes mais populares em %s " -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Ainda ninguém publicou uma nota com uma [categoria](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Seja a primeira pessoa a publicar uma!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a " "publicar uma!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Nuvem de categorias pública" +msgid "List cloud" +msgstr "Utilizador não encontrado." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5089,7 +5088,7 @@ msgstr "URL do seu perfil noutro serviço de microblogues compatível" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -5122,7 +5121,21 @@ msgstr "Não foi possível obter uma chave de pedido." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Não pode subscrever um perfil remoto OMB 0.1 com esta operação." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5311,10 +5324,10 @@ msgstr "Não pode impedir notas públicas neste site." msgid "User is already sandboxed." msgstr "Utilizador já está impedido de criar notas públicas." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Categoria de pessoas inválida: %s." #. TRANS: Page title for page showing self tags. @@ -5611,19 +5624,19 @@ msgid "Notice deleted." msgstr "Avatar actualizado." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Utilizadores auto-categorizados com %1$s - página %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Utilizadores auto-categorizados com %1$s - página %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Notas categorizadas com %1$s, página %2$d" @@ -5661,11 +5674,11 @@ msgid "" msgstr "" "Estas são as notas de %s e dos amigos, mas ainda não publicaram nenhuma." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5680,7 +5693,7 @@ msgstr "" msgid "Listed" msgstr "Licença" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6205,7 +6218,7 @@ msgstr "Não pode subscrever um perfil remoto OMB 0.1 com esta operação." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Tem de iniciar uma sessão para criar o grupo." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6213,16 +6226,16 @@ msgstr "Tem de iniciar uma sessão para criar o grupo." msgid "No ID given." msgstr "Argumento de identificação (ID) em falta." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Não foi possível adicionar %1$s ao grupo %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Subscritores de %1$s, página %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6366,42 +6379,43 @@ msgstr "Fonte de notas para a categoria %s (Atom)" msgid "You cannot tag this user." msgstr "Não pode enviar uma mensagem a este utilizador." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Perfil" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Categoria %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Limites" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Erro do Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Perfil" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Categorizar utilizador" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Limites" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Categorias" +msgid "Lists" +msgstr "Limites" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Categorias para si (letras, números, -, ., _), separadas por vírgulas ou " @@ -6413,13 +6427,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Categorias" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Senha gravada." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Use este formulário para categorizar os seus subscritores ou os que " "subscreve." @@ -6444,10 +6459,10 @@ msgstr "Utilizador não está silenciado." msgid "Unsubscribed" msgstr "Subscrição cancelada" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Subscritores de %1$s, página %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7143,21 +7158,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Não foi possível apagar a subscrição." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Não foi possível apagar a subscrição." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7780,7 +7795,7 @@ msgid "Cancel" msgstr "Cancelar" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Gravar" @@ -7828,14 +7843,14 @@ msgid "Do not use this method!" msgstr "Não apagar esta nota" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Respostas a %1$s em %2$s." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Actualizações de %1#s a %2$s!" #. TRANS: Title. @@ -9517,15 +9532,15 @@ msgstr "Não foi possível inserir nova subscrição." msgid "No oEmbed API endpoint available." msgstr "MI não está disponível." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Categoria" +msgid "List" +msgstr "Links" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Categorias para este utilizador (letras, números, ., _), separadas por " "vírgulas ou espaços" @@ -9548,11 +9563,11 @@ msgstr[1] "Descreva o grupo ou o assunto em %d caracteres" msgid "Delete this list." msgstr "Apagar este utilizador." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9589,7 +9604,7 @@ msgstr "Subscritores" msgid "Subscribers to %1$s list by %2$s." msgstr "Subscreveu %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9615,7 +9630,7 @@ msgstr "Editar configurações do perfil" msgid "Edit" msgstr "Editar" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9628,48 +9643,57 @@ msgid "List Subscriptions" msgstr "Subscrições" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Subscreveu %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Actualizações com \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Actualizações com \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Notas populares" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Editar" +msgid "Edit lists" +msgstr "Categoria de pessoas inválida: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Categorias" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9682,11 +9706,12 @@ msgstr "Notas populares" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Subscritores de %1$s, página %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Utilizador não encontrado." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10326,16 +10351,16 @@ msgid "Choose a field to search." msgstr "Escolha uma categoria para reduzir a lista" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10398,7 +10423,7 @@ msgid "Unsubscribe from this user" msgstr "Deixar de subscrever este utilizador" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10488,87 +10513,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Use este formulário para editar o grupo." +#~ msgid "No such people tag." +#~ msgstr "Categoria não foi encontrada." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Não foi possível actualizar o grupo." +#~ msgid "Public people tag %s" +#~ msgstr "Notas públicas, página %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Repetições de %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Nuvem de categorias pública" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Respostas a %1$s, página %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Estas são as categorias recentes mais populares em %s " #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Repetições de %s" +#~ msgid "People tag cloud" +#~ msgstr "Nuvem de categorias pública" + +#~ msgid "Tag %s" +#~ msgstr "Categoria %s" + +#~ msgid "Tag user" +#~ msgstr "Categorizar utilizador" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Respostas a %1$s, página %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problema na gravação da caixa de entrada do grupo." - -#~ msgid "Groups with most members" -#~ msgstr "Grupos com mais membros" - -#~ msgid "Groups with most posts" -#~ msgstr "Grupos com mais notas" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Descreva o grupo ou assunto" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Apagar este grupo." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Pessoas" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Categoria" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Editar configurações do perfil" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Editar" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Pessoas que %s subscreve" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Todas as subscrições" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Pessoas" - -#~ msgid "User" -#~ msgstr "Utilizador" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Categorias nas notas de %s" - -#~ msgid "All subscriptions" -#~ msgstr "Todas as subscrições" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Pessoas" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Pessoas que subscrevem %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index c7a70a2583..57cafef11e 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:52+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -123,7 +123,7 @@ msgstr "Salvar as configurações de acesso" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -161,9 +161,11 @@ msgstr "Você não está autenticado." msgid "No such profile." msgstr "Este perfil não existe." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Esta etiqueta não existe." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -185,7 +187,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Assinado" @@ -628,7 +630,7 @@ msgstr "O nome completo é muito extenso (máx. 255 caracteres)" #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2255,7 +2257,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Apelido inválido: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "As configurações foram salvas." @@ -2278,11 +2280,6 @@ msgstr "Não é uma etiqueta de pessoa válida: %s." msgid "No tagger or ID." msgstr "Nenhum apelido ou identificação." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Esta etiqueta não existe." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Este usuário não existe." @@ -4096,26 +4093,26 @@ msgstr "" msgid "People search" msgstr "Procurar pessoas" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Mensagens públicas, pág. %d" +msgid "Public list %s" +msgstr "Nuvem de etiquetas públicas" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Respostas para %1$s, pág. %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** é usuário de um grupo no %%%%site.name%%%%, um serviço de [microblog]" "(http://pt.wikipedia.org/wiki/Micro-blogging) baseado no software livre " @@ -4237,10 +4234,12 @@ msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" "Ninguém publicou nenhuma mensagem com a [etiqueta](%%doc.tags%%) ainda." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Mensagens etiquetadas com %1$s, pág. %2$d" @@ -4261,24 +4260,24 @@ msgstr "" "[StatusNet](http://status.net/). Seus membros compartilham mensagens curtas " "sobre suas vidas e interesses. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" "Ninguém publicou nenhuma mensagem com a [etiqueta](%%doc.tags%%) ainda." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Foi efetuada a assinatura de $s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Mensagens de %1$s etiquetadas como %2$s, pág. %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4656,48 +4655,48 @@ msgstr "" "Este é %%site.name%%, um serviço de [microblog](http://pt.wikipedia.org/wiki/" "Microblogging) baseado no software livre [StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Nuvem de etiquetas públicas" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Estas são as etiquetas recentes mais populares no %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" "Ninguém publicou nenhuma mensagem com a [etiqueta](%%doc.tags%%) ainda." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Seja o primeiro a publicar uma!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Por que você não [registra uma conta](%%action.register%%) pra ser o " "primeiro a publicar?" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Nuvem de etiquetas públicas" +msgid "List cloud" +msgstr "O método da API não foi encontrado!" -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5071,7 +5070,7 @@ msgstr "URL do seu perfil em outro serviço de microblog compatível." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Assinar" @@ -5099,7 +5098,21 @@ msgstr "Não foi possível obter um token de requisição." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Não é possível assinar um perfil OMB 0.1 remoto com essa ação." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5292,10 +5305,10 @@ msgstr "Você não pode colocar usuários deste site em isolamento." msgid "User is already sandboxed." msgstr "O usuário já está em isolamento." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Não é uma etiqueta de pessoa válida: %s." #. TRANS: Page title for page showing self tags. @@ -5581,19 +5594,19 @@ msgid "Notice deleted." msgstr "A mensagem excluída." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Mensagens de %1$s etiquetadas como %2$s, pág. %3$d" @@ -5632,11 +5645,11 @@ msgstr "" "Esse é o fluxo de mensagens de %s e seus amigos, mas ninguém publicou nada " "ainda." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5651,7 +5664,7 @@ msgstr "" msgid "Listed" msgstr "Licença" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "" @@ -6159,7 +6172,7 @@ msgstr "Não é possível assinar um perfil OMB 0.1 remoto com essa ação." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Você deve estar autenticado para criar um grupo." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6167,16 +6180,16 @@ msgstr "Você deve estar autenticado para criar um grupo." msgid "No ID given." msgstr "Nenhum argumento de ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Assinantes de %1$s, pág. %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6319,42 +6332,43 @@ msgstr "Fonte de mensagens de %s (Atom)" msgid "You cannot tag this user." msgstr "Você não pode enviar mensagens para este usuário." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Perfil do usuário" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Etiqueta %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Limites" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Erro no Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Perfil do usuário" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Etiquetar o usuário" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Limites" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Etiquetas" +msgid "Lists" +msgstr "Limites" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " @@ -6366,13 +6380,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Etiquetas" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "A senha foi salva." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Use esse formulário para adicionar etiquetas aos seus assinantes ou " "assinados." @@ -6397,10 +6412,10 @@ msgstr "O usuário não está silenciado." msgid "Unsubscribed" msgstr "Cancelado" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Assinantes de %1$s, pág. %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7094,21 +7109,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Não foi possível salvar a assinatura." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Não foi possível salvar a assinatura." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7734,7 +7749,7 @@ msgid "Cancel" msgstr "Cancelar" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Salvar" @@ -7782,14 +7797,14 @@ msgid "Do not use this method!" msgstr "Não excluir este grupo" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Respostas para %1$s no %2$s." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Mensagens de %1$s no %2$s!" #. TRANS: Title. @@ -9480,15 +9495,15 @@ msgstr "Não foi possível inserir a nova assinatura." msgid "No oEmbed API endpoint available." msgstr "MI não está disponível" -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Etiqueta" +msgid "List" +msgstr "Links" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Etiquetas para este usuário (letras, números, -, ., e _), separadas por " "vírgulas ou espaços" @@ -9511,11 +9526,11 @@ msgstr[1] "Descreva o grupo ou tópico em %d caracteres." msgid "Delete this list." msgstr "Excluir este usuário." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9552,7 +9567,7 @@ msgstr "Assinantes" msgid "Subscribers to %1$s list by %2$s." msgstr "Foi efetuada a assinatura de $s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9578,7 +9593,7 @@ msgstr "Editar as configurações do perfil" msgid "Edit" msgstr "Editar" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9591,48 +9606,57 @@ msgid "List Subscriptions" msgstr "Assinaturas" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Foi efetuada a assinatura de $s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Mensagens com \"%s\"" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Mensagens com \"%s\"" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Mensagens populares" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Editar" +msgid "Edit lists" +msgstr "Não é uma etiqueta de pessoa válida: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Etiquetas" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9645,11 +9669,12 @@ msgstr "Mensagens populares" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Assinantes de %1$s, pág. %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "O método da API não foi encontrado!" -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10286,16 +10311,16 @@ msgid "Choose a field to search." msgstr "Selecione uma etiqueta para reduzir a lista" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10358,7 +10383,7 @@ msgid "Unsubscribe from this user" msgstr "Cancelar a assinatura deste usuário" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10448,87 +10473,45 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Use esse formulário para editar o grupo." +#~ msgid "No such people tag." +#~ msgstr "Esta etiqueta não existe." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Não foi possível atualizar o grupo." +#~ msgid "Public people tag %s" +#~ msgstr "Mensagens públicas, pág. %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Repetições de %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Nuvem de etiquetas públicas" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Respostas para %1$s, pág. %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Estas são as etiquetas recentes mais populares no %s" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Repetições de %s" +#~ msgid "People tag cloud" +#~ msgstr "Nuvem de etiquetas públicas" + +#~ msgid "Tag %s" +#~ msgstr "Etiqueta %s" + +#~ msgid "Tag user" +#~ msgstr "Etiquetar o usuário" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Respostas para %1$s, pág. %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problema no salvamento das mensagens recebidas do grupo." - -#~ msgid "Groups with most members" -#~ msgstr "Grupos com mais membros" - -#~ msgid "Groups with most posts" -#~ msgstr "Grupos com mais mensagens" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Descreva o grupo ou tópico" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Excluir este grupo." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Pessoas" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Etiqueta" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Editar as configurações do perfil" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Editar" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Assinaturas de %s" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Todas as assinaturas" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Pessoas" - -#~ msgid "User" -#~ msgstr "Usuário" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Etiquetas nas mensagens de %s" - -#~ msgid "All subscriptions" -#~ msgstr "Todas as assinaturas" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Pessoas" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Assinantes de %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index f7241fe22f..74ebaef28a 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -18,18 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -124,7 +124,7 @@ msgstr "Сохранить настройки доступа" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -161,9 +161,11 @@ msgstr "Не авторизован." msgid "No such profile." msgstr "Нет такого профиля." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Нет такого тега." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -187,7 +189,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Подписано" @@ -630,7 +632,7 @@ msgstr "Полное имя слишком длинное (максимум 255 #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2255,7 +2257,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Неверный алиас: «%s»" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Настройки сохранены." @@ -2278,11 +2280,6 @@ msgstr "Неверный тег человека: %s." msgid "No tagger or ID." msgstr "Нет имени или ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Нет такого тега." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Нет такого пользователя." @@ -4094,26 +4091,26 @@ msgstr "" msgid "People search" msgstr "Поиск людей" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Общая лента, страница %d" +msgid "Public list %s" +msgstr "Общее облако тегов" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Ответы для %1$s, страница %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** — группа на %%%%site.name%%%%, сервисе [микроблоггинга](http://ru." "wikipedia.org/wiki/Микроблоггинг), основанном на свободном программном " @@ -4233,10 +4230,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "Пока никто на оставлял записей с [тегами](%%doc.tags%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Записи с тегом %1$s, страница %2$d" @@ -4257,23 +4256,23 @@ msgstr "" "обеспечении [StatusNet](http://status.net/). Участники обмениваются " "короткими сообщениями о своей жизни и интересах. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "Пока никто на оставлял записей с [тегами](%%doc.tags%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Подписался на %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "%1$s с тегом %2$s, страница %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4649,47 +4648,47 @@ msgstr "" "Микроблоггинг), созданный с использованием свободного программного " "обеспечения [StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Общее облако тегов" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Самые популярные недавние теги на %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Пока никто на оставлял записей с [тегами](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Станьте первым отправителем!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Почему бы не [зарегистрироваться](%%action.register%%), чтобы отправить " "первым?" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Общее облако тегов" +msgid "List cloud" +msgstr "Метод API не найден." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -5058,7 +5057,7 @@ msgstr "URL-адрес вашего профиля на другом совме #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Подписаться" @@ -5087,7 +5086,21 @@ msgstr "" "Вы не можете подписаться на удалённый профиль OMB 0.1 с помощью этого " "действия." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5276,10 +5289,10 @@ msgstr "" msgid "User is already sandboxed." msgstr "Пользователь уже в режиме песочницы." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Неверный тег человека: %s." #. TRANS: Page title for page showing self tags. @@ -5568,19 +5581,19 @@ msgid "Notice deleted." msgstr "Запись удалена." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Пользователи, установившие себе тег %1$s — страница %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Пользователи, установившие себе тег %1$s — страница %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "%1$s с тегом %2$s, страница %3$d" @@ -5617,11 +5630,11 @@ msgid "" "yet." msgstr "Это лента %s и друзей, однако пока никто ничего не отправил." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5636,7 +5649,7 @@ msgstr "" msgid "Listed" msgstr "Лицензия" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6146,7 +6159,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Вы должны авторизоваться, чтобы создать новую группу." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6154,16 +6167,16 @@ msgstr "Вы должны авторизоваться, чтобы создат msgid "No ID given." msgstr "Нет аргумента ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Подписчики %1$s, страница %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6306,42 +6319,43 @@ msgstr "Лента записей для тега %s (Atom)" msgid "You cannot tag this user." msgstr "Вы не можете послать сообщение этому пользователю." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Профиль пользователя" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Теги %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Ограничения" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Ошибка AJAX" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Профиль пользователя" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Теги для пользователя" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Ограничения" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Теги" +msgid "Lists" +msgstr "Ограничения" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Теги для себя (буквы, цифры, -, ., и _), разделённые запятой или пробелом." @@ -6351,13 +6365,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Теги" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Пароль сохранён." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." @@ -6381,10 +6396,10 @@ msgstr "Пользователь не заглушён." msgid "Unsubscribed" msgstr "Отписано" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Подписчики %1$s, страница %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7068,21 +7083,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Не удаётся удалить подписку." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Не удаётся удалить подписку." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7682,7 +7697,7 @@ msgid "Cancel" msgstr "Отменить" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Сохранить" @@ -7728,14 +7743,14 @@ msgid "Do not use this method!" msgstr "Не используйте этот метод!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Ответы на записи %1$s на %2$s." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Обновлено от %1$s на %2$s!" #. TRANS: Title. @@ -9399,15 +9414,15 @@ msgstr "Не удаётся вставить новую подписку." msgid "No oEmbed API endpoint available." msgstr "IM не доступен." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Теги" +msgid "List" +msgstr "Ссылки" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятыми " "или пробелами." @@ -9431,11 +9446,11 @@ msgstr[2] "Опишите группу или тему, используя до msgid "Delete this list." msgstr "Удалить этого пользователя." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9472,7 +9487,7 @@ msgstr "Подписчики" msgid "Subscribers to %1$s list by %2$s." msgstr "Подписался на %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9498,7 +9513,7 @@ msgstr "Изменить настройки профиля." msgid "Edit" msgstr "Редактировать" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9511,48 +9526,57 @@ msgid "List Subscriptions" msgstr "Подписки" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Подписался на %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Обновления с «$s»" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Обновления с «$s»" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s и %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Популярные записи" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Редактировать" +msgid "Edit lists" +msgstr "Неверный тег человека: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Теги" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9565,11 +9589,12 @@ msgstr "Популярные записи" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Подписчики %1$s, страница %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Метод API не найден." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10189,16 +10214,16 @@ msgid "Choose a field to search." msgstr "Выберите тег из выпадающего списка" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s и %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s и %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10259,7 +10284,7 @@ msgid "Unsubscribe from this user" msgstr "Отписаться от этого пользователя" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Отписаться" @@ -10352,87 +10377,45 @@ msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Заполните информацию о группе в следующие поля" +#~ msgid "No such people tag." +#~ msgstr "Нет такого тега." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Не удаётся обновить информацию о группе." +#~ msgid "Public people tag %s" +#~ msgstr "Общая лента, страница %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Повторы за %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Общее облако тегов" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Ответы для %1$s, страница %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Самые популярные недавние теги на %s" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Повторы за %s" +#~ msgid "People tag cloud" +#~ msgstr "Общее облако тегов" + +#~ msgid "Tag %s" +#~ msgstr "Теги %s" + +#~ msgid "Tag user" +#~ msgstr "Теги для пользователя" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Ответы для %1$s, страница %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Проблемы с сохранением входящих сообщений группы." - -#~ msgid "Groups with most members" -#~ msgstr "Группы с наибольшим количеством участников" - -#~ msgid "Groups with most posts" -#~ msgstr "Группы с наибольшим количеством записей" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Опишите группу или тему." - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Удалить эту группу." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Люди" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Теги" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Изменить настройки профиля." +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Редактировать" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Люди на которых подписан %s" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s и %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Все подписки." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Люди" - -#~ msgid "User" -#~ msgstr "Пользователь" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Теги записей пользователя %s" - -#~ msgid "All subscriptions" -#~ msgstr "Все подписки." - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Люди" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Люди подписанные на %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 329d932e73..450490a7b9 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -124,7 +124,7 @@ msgstr "" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -205,12 +205,15 @@ msgstr "" msgid "No such profile." msgstr "" -#. TRANS: Client error displayed trying to reference a non-existing people tag. -#: actions/addpeopletag.php:110 actions/peopletagsubscribers.php:96 +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +#: actions/addpeopletag.php:110 actions/editpeopletag.php:109 +#: actions/peopletagged.php:96 actions/peopletagsubscribers.php:96 #: actions/profilecompletion.php:101 actions/profiletagbyid.php:67 #: actions/removepeopletag.php:111 actions/showprofiletag.php:86 #: actions/subscribepeopletag.php:95 actions/unsubscribepeopletag.php:96 -msgid "No such people tag." +msgid "No such list." msgstr "" #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -220,21 +223,21 @@ msgstr "" #. TRANS: Client error displayed when an unknown error occurs while tagging a user. #. TRANS: %s is a username. -#: actions/addpeopletag.php:150 actions/removepeopletag.php:152 +#: actions/addpeopletag.php:150 #, php-format msgid "There was an unexpected error while tagging %s." msgstr "" #. TRANS: Client error displayed when an unknown error occurs while tagging a user. #. TRANS: %s is a profile URL. -#: actions/addpeopletag.php:155 actions/removepeopletag.php:157 +#: actions/addpeopletag.php:155 #, php-format msgid "" "There was a problem tagging %s. The remote server is probably not responding " "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. #: actions/addpeopletag.php:165 actions/subscribe.php:149 msgid "Subscribed" @@ -825,7 +828,7 @@ msgstr "" #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2764,7 +2767,7 @@ msgid "Invalid alias: \"%s\"" msgstr "" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. #: actions/editgroup.php:312 actions/editpeopletag.php:322 msgid "Options saved." msgstr "" @@ -2790,11 +2793,6 @@ msgstr "" msgid "No tagger or ID." msgstr "" -#. TRANS: Client error displayed when referring to a non-existing list. -#: actions/editpeopletag.php:109 actions/peopletagged.php:96 -msgid "No such list." -msgstr "" - #. TRANS: Client error displayed when referring to non-local user. #: actions/editpeopletag.php:116 msgid "Not a local user." @@ -4855,29 +4853,29 @@ msgstr "" msgid "People search" msgstr "" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #: actions/peopletag.php:57 #, php-format -msgid "Public people tag %s" +msgid "Public list %s" msgstr "" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #: actions/peopletag.php:61 #, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #: actions/peopletag.php:105 #, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" #. TRANS: Client error displayed when a tagger is expected but not provided. @@ -5001,11 +4999,13 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" +#. TRANS: Page title. %s is a tagged user's nickname. #: actions/peopletagsforuser.php:50 #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #: actions/peopletagsforuser.php:53 #, php-format msgid "Lists with %1$s, page %2$d" @@ -5024,26 +5024,26 @@ msgid "" "tag's timeline." msgstr "" -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #: actions/peopletagsforuser.php:144 #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #: actions/peopletagsubscribers.php:108 #, php-format -msgid "Subscribers of people tagged %1$s by %2$s" +msgid "Subscribers to list %1$s by %2$s" msgstr "" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. #: actions/peopletagsubscribers.php:113 #, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -5460,49 +5460,49 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #: actions/publicpeopletagcloud.php:57 -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #: actions/publicpeopletagcloud.php:65 #, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #: actions/publicpeopletagcloud.php:73 #, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #: actions/publicpeopletagcloud.php:77 -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #: actions/publicpeopletagcloud.php:82 #, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #: actions/publicpeopletagcloud.php:136 -msgid "People tag cloud" +msgid "List cloud" msgstr "" -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #: actions/publicpeopletagcloud.php:177 #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -5903,7 +5903,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #: actions/remotesubscribe.php:147 lib/accountprofileblock.php:308 #: lib/subscribeform.php:130 lib/subscribepeopletagform.php:106 msgctxt "BUTTON" @@ -5936,7 +5936,23 @@ msgstr "" msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#: actions/removepeopletag.php:152 +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#: actions/removepeopletag.php:157 +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. #: actions/removepeopletag.php:167 msgid "Untagged" msgstr "" @@ -6148,11 +6164,11 @@ msgstr "" msgid "User is already sandboxed." msgstr "" -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. #: actions/selftag.php:68 #, php-format -msgid "Not a valid people tag: %s." +msgid "Not a valid list: %s." msgstr "" #. TRANS: Page title for page showing self tags. @@ -6470,21 +6486,21 @@ msgid "Notice deleted." msgstr "" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #: actions/showprofiletag.php:125 #, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #: actions/showprofiletag.php:133 #, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #: actions/showprofiletag.php:139 #, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" @@ -6527,12 +6543,12 @@ msgid "" "yet." msgstr "" -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. #: actions/showprofiletag.php:218 msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #: actions/showprofiletag.php:223 #, php-format @@ -6546,7 +6562,7 @@ msgstr "" msgid "Listed" msgstr "" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #: actions/showprofiletag.php:312 msgid "Show all" @@ -7128,7 +7144,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #: actions/subscribepeopletag.php:59 actions/unsubscribepeopletag.php:60 -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "" #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -7136,18 +7152,18 @@ msgstr "" msgid "No ID given." msgstr "" -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #: actions/subscribepeopletag.php:125 #, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "" -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #: actions/subscribepeopletag.php:134 #, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "" #. TRANS: Header for list of subscribers for a user (first page). @@ -7299,45 +7315,45 @@ msgstr "" msgid "You cannot tag this user." msgstr "" -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #: actions/tagprofile.php:78 -msgid "Tag a profile" +msgid "List a profile" msgstr "" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. #: actions/tagprofile.php:82 #, php-format -msgid "Tag %s" +msgctxt "ADDTOLIST" +msgid "List %s" msgstr "" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #: actions/tagprofile.php:92 msgctxt "TITLE" msgid "Error" msgstr "" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. #: actions/tagprofile.php:108 msgid "User profile" msgstr "" -#. TRANS: Fieldset legend for people tag form. +#. TRANS: Fieldset legend for list form. #: actions/tagprofile.php:151 -msgid "Tag user" +msgid "List user" msgstr "" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. -#: actions/tagprofile.php:162 lib/peopletags.php:193 +#. TRANS: Field label on list form. +#: actions/tagprofile.php:162 msgctxt "LABEL" -msgid "Tags" +msgid "Lists" msgstr "" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #: actions/tagprofile.php:165 msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" @@ -7347,14 +7363,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #: actions/tagprofile.php:244 -msgid "Tags saved." +msgid "Lists saved." msgstr "" #. TRANS: Page notice. #: actions/tagprofile.php:260 -msgid "Use this form to add tags to your subscribers or subscriptions." +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -7382,11 +7398,11 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #: actions/unsubscribepeopletag.php:127 #, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -8142,22 +8158,22 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #: classes/Profile_tag.php:171 #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #: classes/Profile_tag_subscription.php:54 -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "" -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #: classes/Profile_tag_subscription.php:81 -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "" #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -8869,7 +8885,7 @@ msgid "Cancel" msgstr "" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. #: lib/applicationeditform.php:357 lib/peopletageditform.php:168 msgid "Save" msgstr "" @@ -8927,14 +8943,14 @@ msgstr "" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. #: lib/atomlistnoticefeed.php:65 #, php-format -msgid "Timeline for people tagged #%1$s by %2$s" +msgid "Timeline for people in list %1$s by %2$s" msgstr "" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #: lib/atomlistnoticefeed.php:72 #, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "" #. TRANS: Title. @@ -10713,15 +10729,15 @@ msgstr "" msgid "No oEmbed API endpoint available." msgstr "" -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #: lib/peopletageditform.php:131 msgctxt "LABEL" -msgid "Tag" +msgid "List" msgstr "" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #: lib/peopletageditform.php:134 -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" #. TRANS: Field title for description of list. @@ -10743,12 +10759,12 @@ msgstr[1] "" msgid "Delete this list." msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #: lib/peopletageditform.php:182 msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #: lib/peopletageditform.php:186 msgctxt "HEADER" msgid "Search" @@ -10787,7 +10803,7 @@ msgstr "" msgid "Subscribers to %1$s list by %2$s." msgstr "" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #: lib/peopletaggroupnav.php:142 msgctxt "MENU" msgid "Edit" @@ -10815,7 +10831,7 @@ msgstr "" msgid "Edit" msgstr "" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #: lib/peopletaglist.php:260 msgctxt "MODE" msgid "Private" @@ -10828,7 +10844,7 @@ msgid "List Subscriptions" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #: lib/peopletagnav.php:81 #, php-format msgctxt "TOOLTIP" @@ -10836,45 +10852,53 @@ msgid "Lists subscribed to by %s." msgstr "" #. TRANS: Menu item in the group navigation page. -#: lib/peopletagnav.php:87 +#. TRANS: %s is a user nickname. +#: lib/peopletagnav.php:88 #, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#: lib/peopletagnav.php:90 +#. TRANS: %s is a user nickname. +#: lib/peopletagnav.php:91 #, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "" #. TRANS: Menu item in the group navigation page. -#: lib/peopletagnav.php:96 +#. TRANS: %s is a user nickname. +#: lib/peopletagnav.php:98 #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#: lib/peopletagnav.php:99 +#. TRANS: %s is a user nickname. +#: lib/peopletagnav.php:101 #, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. #: lib/peopletags.php:87 msgctxt "LABEL" -msgid "Tags by you" +msgid "Your lists" msgstr "" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #: lib/peopletags.php:135 msgctxt "LEGEND" -msgid "Edit tags" +msgid "Edit lists" +msgstr "" + +#. TRANS: Label in self tags widget. +#: lib/peopletags.php:193 +msgctxt "LABEL" +msgid "Tags" msgstr "" #. TRANS: Title for section contaning lists with the most subscribers. @@ -10889,14 +10913,15 @@ msgstr "" msgid "Listed: %1$d Subscribers: %2$d" msgstr "" -#: lib/peopletagsforusersection.php:68 +#. TRANS: Title for page that displays which lists current user is part of. +#: lib/peopletagsforusersection.php:69 #, php-format msgid "Lists with you" msgstr "" -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#: lib/peopletagsforusersection.php:72 +#: lib/peopletagsforusersection.php:73 #, php-format msgid "Lists with %s" msgstr "" @@ -11599,17 +11624,17 @@ msgid "Choose a field to search." msgstr "" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #: lib/togglepeopletag.php:190 #, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #: lib/togglepeopletag.php:268 #, php-format -msgid "Tag %1$s as %2$s" +msgid "Add %1$s to list %2$s" msgstr "" #. TRANS: Title for top posters section. @@ -11681,7 +11706,7 @@ msgid "Unsubscribe from this user" msgstr "" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #: lib/unsubscribeform.php:132 lib/unsubscribepeopletagform.php:106 msgctxt "BUTTON" msgid "Unsubscribe" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index afd83cb7fd..17662c2c64 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:56+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -124,7 +124,7 @@ msgstr "Spara inställningar för åtkomst" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -161,9 +161,11 @@ msgstr "Inte inloggad." msgid "No such profile." msgstr "Ingen sådan profil." -#. TRANS: Client error displayed trying to reference a non-existing people tag. -msgid "No such people tag." -msgstr "Ingen sådan persontagg." +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +msgid "No such list." +msgstr "Ingen sådan lista." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. msgid "You cannot tag an OMB 0.1 remote profile with this action." @@ -185,7 +187,7 @@ msgstr "" "Det uppstod ett problem vid taggning av %s. Fjärrservern svarar förmodligen " "inte korrekt, prova att försöka igen senare." -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Prenumerant" @@ -620,7 +622,7 @@ msgstr "Fullständigt namn är för långt (max 255 tecken)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2230,33 +2232,28 @@ msgid "Invalid alias: \"%s\"" msgstr "Ogiltigt alias: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Alternativ sparade." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Ta bort persontagg %s" +msgstr "Ta bort listan %s" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Redigera persontagg %s" +msgstr "Redigera listan %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. msgid "No tagger or ID." msgstr "Ingen taggare eller ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Ingen sådan tagg." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Inte en lokal användare." @@ -2266,9 +2263,8 @@ msgid "You must be the creator of the tag to edit it." msgstr "Du måste vara skaparen av taggen för att redigera den." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Använd detta formulär för att redigera gruppen." +msgstr "Använd detta formulär för att redigera listan." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. msgid "Delete aborted." @@ -4048,26 +4044,26 @@ msgstr "" msgid "People search" msgstr "Personsökning" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. -#, php-format -msgid "Public people tag %s" -msgstr "Publik persontagg %s" +#. TRANS: Title for list page. +#. TRANS: %s is a list. +#, fuzzy, php-format +msgid "Public list %s" +msgstr "Publika listor av dig" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. -#, php-format -msgid "Public people tag %1$s, page %2$d" +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, fuzzy, php-format +msgid "Public list %1$s, page %2$d" msgstr "Publik persontagg %1$s, sida %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** är en användargrupp på %%%%site.name%%%%, en [mikroblogg](http://sv." "wikipedia.org/wiki/Mikroblogg)tjänst baserad den fria programvaran " @@ -4080,15 +4076,15 @@ msgstr "Ingen taggare." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Personer taggade %1$s av %2$s" +msgstr "Personer listade i %1$s av %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Personer taggade %1$s av %2$s , sida %3$d" +msgstr "Personer listade i %1$s av %2$s , sida %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. @@ -4096,45 +4092,41 @@ msgid "Creator" msgstr "Skapare" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Privata persontaggar av dig" +msgstr "Privata listor av dig" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Publika persontaggar av dig" +msgstr "Publika listor av dig" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Redigera %s grupp" +msgstr "Listor av dig" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Listor av %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Notiser av %1$s, sida %2$d" +msgstr "Listor av %1$s, sida %2$d" #. TRANS: Client error displayed when trying view another user's private lists. -#, fuzzy msgid "You cannot view others' private lists" -msgstr "Du kan inte se andras privata persontaggar" +msgstr "!Du kan inte se andras privata listor" #. TRANS: Mode selector label. msgid "Mode" msgstr "Läge" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Utkorg för %s" +msgstr "Listor för %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -4179,17 +4171,19 @@ msgstr "" #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "Ingen har postat en notis med en [hashtagg](%%doc.tags%%) än." +msgstr "%s har inte skapat några [listor](%%% %doc.lists% %%%) ännu." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Listor med %s i dem" -#, fuzzy, php-format +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Notiser taggade med %1$s, sida %2$d" +msgstr "Listor med %1$s, sida %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). @@ -4207,30 +4201,30 @@ msgstr "" "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om " "sina liv och intressen. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. -#, fuzzy, php-format -msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "Ingen har postat en notis med en [hashtagg](%%doc.tags%%) än." - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. +#. TRANS: %s is a user nickname. #, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" +msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." +msgstr "%s har inte [listats](%%% %doc.lists% %%%) av någon ännu." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" -msgstr "%1$s taggade %2$s, sida %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Prenumeranter på %1$s-listan av %2$s ." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" +msgstr "Prenumeranter av personer som taggats %1$s av %2$s, sida %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Prenumererar på %s." +msgstr "Listor som prenumereras av %s" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. @@ -4291,6 +4285,9 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" +"Ytterligare insticksmoduler kan aktiveras och konfigureras manuellt. Se online-dokumentationen om " +"insticksmoduler för fler information." #. TRANS: Admin form section header msgid "Default plugins" @@ -4598,44 +4595,47 @@ msgstr "" "Mikroblogg)tjänst baserad på den fria programvaran [StatusNet](http://status." "net/)." -#. TRANS: Title for page with public people tag cloud. -msgid "Public people tag cloud" -msgstr "Publikt persontaggmoln" +#. TRANS: Title for page with public list cloud. +#, fuzzy +msgid "Public list cloud" +msgstr "Publikt taggmoln" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are most used people tags on %s" -msgstr "Dessa är de mest använda persontaggarna på %s" +#, fuzzy, php-format +msgid "These are largest lists on %s" +msgstr "Dessa är de populäraste senaste taggar på %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +#, fuzzy, php-format +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Ingen har [taggat] (%%doc.tags%%) någon ännu." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. -msgid "Be the first to tag someone!" +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +#, fuzzy +msgid "Be the first to list someone!" msgstr "Bli först att tagga någon!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Varför inte [registrera ett konto](%%action.register%%) och var den första " "att tagga någon!" -#. TRANS: DT element on on page with public people tag cloud. -msgid "People tag cloud" -msgstr "Persontaggmoln" +#. TRANS: DT element on on page with public list cloud. +#, fuzzy +msgid "List cloud" +msgstr "Lista hittades inte." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. -#, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +#. TRANS: Link title for number of listed people. %d is the number of listed people. +#, fuzzy, php-format +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] " 1 person taggad" msgstr[1] " %d personer taggade" @@ -5003,7 +5003,7 @@ msgstr "Webbadressen till din profil på en annan kompatibel mikrobloggtjänst." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Prenumerera" @@ -5033,7 +5033,23 @@ msgstr "" "Du kan inte lägga till eller ta bort en tagg för en OMB 0.1-fjärrprofil med " "denna åtgärd." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, fuzzy, php-format +msgid "There was an unexpected error while listing %s." +msgstr "Det uppstod ett oväntat fel vid taggning av %s." + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, fuzzy, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" +"Det uppstod ett problem vid taggning av %s. Fjärrservern svarar förmodligen " +"inte korrekt, prova att försöka igen senare." + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "Inte taggad" @@ -5192,6 +5208,8 @@ msgid "" "You can upload a backed-up stream in Activity Streams format." msgstr "" +"Du kan ladda upp ett säkerhetskopierat flöde i Activity Streams-format." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. msgid "Upload the file" @@ -5219,10 +5237,10 @@ msgstr "Du kan inte flytta användare till sandlådan på denna webbplats." msgid "User is already sandboxed." msgstr "Användare är redan flyttad till sandlådan." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Inte en giltig persontagg: %s." #. TRANS: Page title for page showing self tags. @@ -5279,11 +5297,11 @@ msgstr "Applikationsprofil" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", #. TRANS: %3$d is the number of users using the OAuth application. -#, fuzzy, php-format +#, php-format msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" -msgstr[0] "Skapad av %1$s - %2$s standardåtkomst - %3$d användare" -msgstr[1] "Skapad av %1$s - %2$s standardåtkomst - %3$d användare" +msgstr[0] "Skapad av %1$s - %2$s som standardåtkomst - %3$d användare" +msgstr[1] "Skapad av %1$s - %2$s som standardåtkomst - %3$d användare" #. TRANS: Header on the OAuth application page. msgid "Application actions" @@ -5304,13 +5322,11 @@ msgid "Application info" msgstr "Information om applikation" #. TRANS: Note on the OAuth application page about signature support. -#, fuzzy msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" -"Notera: Vi stöjder HMAC-SHA1-signaturer. Vi stödjer inte metoden med " -"klartextsignatur." +"Notera: HMAC-SHA1-signaturer stöds. Metoden med klartextsignatur stöds inte." #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. msgid "Are you sure you want to reset your consumer key and secret?" @@ -5509,62 +5525,61 @@ msgid "Notice deleted." msgstr "Notis borttagen." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "Privat tidslinje för personer taggade %1$s av dig, sidan %2$d" +msgstr "Privat tidslinje för %1$s-listan av dig, sidan %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "Tidslinje för personer taggade %1$s av dig, sidan %2$d" +msgstr "Tidslinje för %1$s-listan av dig, sidan %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "Tidslinje för personer taggade %1$s av %2$s, sidan %3$d" +msgstr "Tidslinje för %1$s-listan av %2$s, sida %3$d" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Private timeline of %s list by you" -msgstr "Privat tidslinje för personer taggade %s av dig" +msgstr "Privat tidslinje för %s-listan av dig" #. TRANS: Title for public list timeline where the viewer is the tagger. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Timeline for %s list by you" -msgstr "Tidslinje för personer taggade %s av dig" +msgstr "Tidslinje för %s-listan av dig" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Tidslinje för personer taggade %1$s av %2$s" +msgstr "Tidslinje för %1$s-listan av %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Flöde för personer taggade %1$s av %2$s (Atom)" +msgstr "Flöde för %1$s-listan av %2$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"Detta är tidslinjen för personer taggade %1$s av %2$s men ingen har skrivit " -"något ännu." +"Detta är tidslinjen för %1$s-listan av %2$s men ingen har skrivit något ännu." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "Prova tagga fler personer." -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" @@ -5575,11 +5590,10 @@ msgstr "" "följa denna tidslinje!" #. TRANS: Header on show list page. -#, fuzzy msgid "Listed" -msgstr "Licens" +msgstr "Listade" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "Visa alla" @@ -6059,20 +6073,20 @@ msgstr "Du kan bara godkänna dina egna väntande prenumerationer." #. TRANS: Title of the first page showing pending subscribers still awaiting approval. #. TRANS: %s is the name of the user. -#, fuzzy, php-format +#, php-format msgid "%s subscribers awaiting approval" -msgstr "%s gruppmedlemmar" +msgstr "Prenumeranter på %s som väntar på godkännande" #. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval. #. TRANS: %1$s is the name of the user, %2$d is the page number of the members list. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribers awaiting approval, page %2$d" -msgstr "%1$s gruppmedlemmar, sida %2$d" +msgstr "Prenumeranter på %1$s som väntar på godkännande, sida %2$d" #. TRANS: Page notice for group members page. -#, fuzzy msgid "A list of users awaiting approval to subscribe to you." -msgstr "En lista av användarna i denna grupp." +msgstr "" +"En lista med användare som väntar på godkännande för att prenumerera på dig." #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." @@ -6080,24 +6094,23 @@ msgstr "Du kan inte prenumerera på en 0MB 0.1-fjärrprofil med denna åtgärd." #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." -msgstr "Du måste vara inloggad för att skapa en grupp." +msgid "You must be logged in to unsubscribe from a list." +msgstr "Du måste vara inloggad för att sluta prenumerera på ett persontagg." #. TRANS: Client error displayed when trying to perform an action without providing an ID. -#, fuzzy msgid "No ID given." -msgstr "Inget ID-argument." +msgstr "Inget ID angiven." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." -msgstr "Kunde inte ansluta användare %1$s till grupp %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" +msgstr "Kunde inte teckna användare %1$s att prenumerara på persontagg %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s prenumeranter, sida %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6196,12 +6209,11 @@ msgid "%s is not listening to anyone." msgstr "%s lyssnar inte på någon." #. TRANS: Atom feed title. %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Subscription feed for %s (Atom)" -msgstr "Flöde av notiser för %s (Atom)" +msgstr "Flöde av prenumerationer för %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "Snabbmeddelande" @@ -6237,44 +6249,45 @@ msgstr "Flöde av notiser för tagg %s (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." -msgstr "Du kan inte skicka ett meddelande till den användaren." +msgstr "Du kan inte tagga den här användaren." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" -msgstr "Användarprofil" +msgid "List a profile" +msgstr "Tagga en profil" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Tagg %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Listor" -#. TRANS: Title for people tag form when an error has occurred. -#, fuzzy +#. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" msgid "Error" -msgstr "AJAX-fel" +msgstr "Fel" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Användarprofil" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Tagga användare" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Listor" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. +#, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Taggar" +msgid "Lists" +msgstr "Listor" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. +#, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Taggar för denna användare (bokstäver, siffror, -, ., och _), separerade med " @@ -6285,12 +6298,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Taggar" -#. TRANS: Success message if people tags are saved. -msgid "Tags saved." +#. TRANS: Success message if lists are saved. +#, fuzzy +msgid "Lists saved." msgstr "Taggar sparade." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Använd detta formulär för att lägga till taggar till dina prenumeranter " "eller prenumerationer." @@ -6315,10 +6330,10 @@ msgstr "Användare är inte nedtystad." msgid "Unsubscribed" msgstr "Prenumeration avslutad" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s prenumeranter, sida %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -6991,22 +7006,23 @@ msgstr "" "Du har redan skapat %d eller fler taggar som är det maximalt tillåtna " "antalet taggar. Försök använda eller stryka några befintliga taggar." -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. -#, php-format +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. +#, fuzzy, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" "Du har redan %1$d eller flera personer taggade %2$s, vilket är den högsta " "tillåtna antalet. Försök ta bort taggar från andra med samma tagg först." -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. -msgid "Adding people tag subscription failed." +#. TRANS: Exception thrown when inserting a list subscription in the database fails. +#, fuzzy +msgid "Adding list subscription failed." msgstr "Att lägga till prenumeration på persontagg misslyckades." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Kunde inte spara prenumeration." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7294,14 +7310,14 @@ msgstr "" #. TRANS: Client exception thrown when trying to import a notice without content. #. TRANS: %s is the notice URI. -#, fuzzy, php-format +#, php-format msgid "No content for notice %s." -msgstr "Hitta innehåll i notiser" +msgstr "Inget innehåll i notis %s." #. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. -#, fuzzy, php-format +#, php-format msgid "No such user \"%s\"." -msgstr "Ingen sådan användare." +msgstr "Ingen sådan användare \"%s\"." #. TRANS: Client exception thrown when post to collection fails with a 400 status. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. @@ -7309,10 +7325,10 @@ msgstr "Ingen sådan användare." #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. #. TRANS: Exception thrown when post to collection fails with a status that is not handled. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. -#, fuzzy, php-format +#, php-format msgctxt "URLSTATUSREASON" msgid "%1$s %2$s %3$s" -msgstr "%1$s - %2$s" +msgstr "%1$s %2$s %3$s" #. TRANS: Client exception thrown when there is no source attribute. msgid "Can't handle remote content yet." @@ -7473,16 +7489,16 @@ msgstr "" #. TRANS: OAuth exception given when an incorrect access token was given for a user. msgid "Bad access token." -msgstr "" +msgstr "Felaktig åtkomst-token." #. TRANS: OAuth exception given when no user was found for a given token (no token was found). msgid "No user for that token." -msgstr "" +msgstr "Ingen användare för den token." #. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel". #. TRANS: Client error thrown when authentication fails. msgid "Could not authenticate you." -msgstr "" +msgstr "Kunde inte autentisera dig." #. TRANS: Server error displayed when trying to create an anynymous OAuth consumer. #, fuzzy @@ -7606,7 +7622,7 @@ msgid "Cancel" msgstr "Avbryt" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Spara" @@ -7618,7 +7634,7 @@ msgstr "Okänd funktion" #. TRANS: Message has a leading space and a trailing space. Used in application list. #. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " -msgstr "" +msgstr " av " #. TRANS: Application access type msgid "read-write" @@ -7654,14 +7670,14 @@ msgid "Do not use this method!" msgstr "Ta inte bort denna grupp" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Tidslinje för %1$s-listan av %2$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Uppdateringar från %1$s på %2$s!" #. TRANS: Title. @@ -8032,13 +8048,12 @@ msgstr "Kan inte sätta på notifikation." #. TRANS: Help message for IM/SMS command "help". msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "visa denna hjälp" #. TRANS: Help message for IM/SMS command "follow ". -#, fuzzy msgctxt "COMMANDHELP" msgid "subscribe to user" -msgstr "Prenumerera på denna användare" +msgstr "prenumerera på användare" #. TRANS: Help message for IM/SMS command "groups". msgctxt "COMMANDHELP" @@ -8147,28 +8162,28 @@ msgstr "Ta bort grupp" #. TRANS: Help message for IM/SMS command "stats". msgctxt "COMMANDHELP" msgid "get your stats" -msgstr "" +msgstr "få din statistik" #. TRANS: Help message for IM/SMS command "stop". #. TRANS: Help message for IM/SMS command "quit". msgctxt "COMMANDHELP" msgid "same as 'off'" -msgstr "" +msgstr "samma som 'off'" #. TRANS: Help message for IM/SMS command "sub ". msgctxt "COMMANDHELP" msgid "same as 'follow'" -msgstr "" +msgstr "samma som 'follow'" #. TRANS: Help message for IM/SMS command "unsub ". msgctxt "COMMANDHELP" msgid "same as 'leave'" -msgstr "" +msgstr "samma som 'leave'" #. TRANS: Help message for IM/SMS command "last ". msgctxt "COMMANDHELP" msgid "same as 'get'" -msgstr "" +msgstr "samma som 'get'" #. TRANS: Help message for IM/SMS command "on ". #. TRANS: Help message for IM/SMS command "off ". @@ -8179,15 +8194,14 @@ msgstr "" #. TRANS: Help message for IM/SMS command "untrack all". #. TRANS: Help message for IM/SMS command "tracks". #. TRANS: Help message for IM/SMS command "tracking". -#, fuzzy msgctxt "COMMANDHELP" msgid "not yet implemented." -msgstr "Kommando inte implementerat än." +msgstr "ännu inte implementerad." #. TRANS: Help message for IM/SMS command "nudge ". msgctxt "COMMANDHELP" msgid "remind a user to update." -msgstr "" +msgstr "påminna användaren att uppdatera." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. #, fuzzy @@ -8215,7 +8229,6 @@ msgstr "Databasfel" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" msgstr "Publikt" @@ -8223,17 +8236,15 @@ msgstr "Publikt" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Groups" msgstr "Grupper" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Begränsningar" +msgstr "Listor" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -8245,9 +8256,8 @@ msgid "Delete this user" msgstr "Ta bort denna användare" #. TRANS: Form legend of form for changing the page design. -#, fuzzy msgid "Change design" -msgstr "Spara utseende" +msgstr "Ändra utseende" #. TRANS: Fieldset legend on profile design page to change profile page colours. msgid "Change colours" @@ -8294,7 +8304,6 @@ msgid "Disfavor this notice" msgstr "Avmarkera denna notis som favorit" #. TRANS: Button text for removing the favourite status for a favourite notice. -#, fuzzy msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Ta bort märkning som favorit" @@ -8305,7 +8314,6 @@ msgid "Favor this notice" msgstr "Markera denna notis som favorit" #. TRANS: Button text for adding the favourite status to a notice. -#, fuzzy msgctxt "BUTTON" msgid "Favor" msgstr "Markera som favorit" @@ -8328,19 +8336,18 @@ msgstr "FOAF" #. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." -msgstr "" +msgstr "Ingen författare i flödet." #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. msgid "Cannot import without a user." -msgstr "" +msgstr "Kan inte importera utan en användare." #. TRANS: Header for feed links (h2). msgid "Feeds" msgstr "Flöden" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" msgstr "Alla" @@ -8350,9 +8357,8 @@ msgid "Tag" msgstr "Tagg" #. TRANS: Dropdown field title on gallery action page for a list containing tags. -#, fuzzy msgid "Choose a tag to narrow list." -msgstr "Välj en tagg för att begränsa lista" +msgstr "Välj en tagg för att begränsa listan." #. TRANS: Description on form for granting a role. #, php-format @@ -9325,15 +9331,15 @@ msgstr "Kunde inte infoga ny prenumeration." msgid "No oEmbed API endpoint available." msgstr "IM är inte tillgänglig." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Tagg" +msgid "List" +msgstr "Lista" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Taggar för denna användare (bokstäver, nummer, -, ., och _), separerade med " "kommatecken eller mellanslag" @@ -9356,159 +9362,156 @@ msgstr[1] "Beskriv gruppen eller ämnet med högst %d tecken" msgid "Delete this list." msgstr "Ta bort den här användaren." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. -#, fuzzy +#. TRANS: Header in list edit form. msgctxt "HEADER" msgid "Search" msgstr "Sök" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Länkar" +msgstr "Lista" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s - %2$s" +msgstr "%1$s-listan av %2$s ." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Licens" +msgstr "Listade" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Prenumeranter" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "Prenumererar på %s." +msgstr "Prenumeranter på %1$s-listan av %2$s ." -#. TRANS: Menu item in people tag navigation panel. -#, fuzzy +#. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" msgstr "Redigera" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Redigera %s grupp" +msgstr "Redigera %s-listan av dig." #. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy msgid "Tagged" -msgstr "Tagg" +msgstr "Taggade" #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "Redigera profilinställningar." +msgstr "Redigera listinställningar." #. TRANS: Text for link to edit list settings. msgid "Edit" msgstr "Redigera" -#. TRANS: Privacy mode text in people tag list item for private tags. -#, fuzzy +#. TRANS: Privacy mode text in list list item for private list. msgctxt "MODE" msgid "Private" msgstr "Privat" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "Prenumerationer" +msgstr "Listprenumerationer" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "Prenumererar på %s." +msgstr "Listor som prenumereras av %s." #. TRANS: Menu item in the group navigation page. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Uppdateringar med \"%s\"" +msgstr "Listor med %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Uppdateringar med \"%s\"" +msgstr "Listor med %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Listor av %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "%1$s - %2$s" +msgstr "Listor av %s." -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Populära listor" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Redigera" +msgid "Edit lists" +msgstr "Redigera listan %s" + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "Taggar" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Populära notiser" +msgstr "Populära listor" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "%1$s prenumeranter, sida %2$d" +msgstr "Listade: %1$d Prenumeranter: %2$d" -#, fuzzy, php-format +#. TRANS: Title for page that displays which lists current user is part of. +#, php-format msgid "Lists with you" -msgstr "Lista hittades inte." +msgstr "Listor med dig" -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Uppdateringar med \"%s\"" +msgstr "Listor med %s" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "%s prenumerationer" +msgstr "Prenumerationer på listor" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Profile" msgstr "Profil" @@ -9518,28 +9521,24 @@ msgid "Your profile" msgstr "Grupprofil" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Svar" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Favoriter" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) -#, fuzzy msgctxt "FIXME" msgid "User" msgstr "Användare" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" -msgstr "Meddelande" +msgstr "Meddelanden" #. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" @@ -9552,32 +9551,29 @@ msgstr "Okänd" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Disable" -msgstr "" +msgstr "Inaktivera" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Enable" -msgstr "" +msgstr "Aktivera" msgctxt "plugin-description" msgid "(Plugin descriptions unavailable when disabled.)" -msgstr "" +msgstr "(Beskrivningar av insticksmoduler inte tillgängliga när inaktiverade.)" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "Inställningar för SMS" +msgstr "Inställningar" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Change your personal settings." -msgstr "Ändra dina profilinställningar" +msgstr "Ändra dina personliga inställningar." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Site configuration." -msgstr "Konfiguration av användare" +msgstr "Webbplatskonfiguration." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -9585,14 +9581,12 @@ msgid "Logout" msgstr "Logga ut" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Logout from the site." -msgstr "Logga ut från webbplatsen" +msgstr "Logga ut från webbplatsen." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Login to the site." -msgstr "Logga in på webbplatsen" +msgstr "Logga in på webbplatsen." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -9600,19 +9594,16 @@ msgid "Search" msgstr "Sök" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Search the site." -msgstr "Sök webbplats" +msgstr "Sök på webbplatsen." #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Följ" +msgstr "Följer" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Följ" +msgstr "Prenumeranter" #. TRANS: Label for user statistics. msgid "User ID" @@ -9636,9 +9627,8 @@ msgid "Groups" msgstr "Grupper" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "Begränsningar" +msgstr "Listor" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -9649,7 +9639,6 @@ msgid "User groups" msgstr "Användargrupper" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" msgstr "Senaste taggar" @@ -9659,16 +9648,14 @@ msgid "Recent tags" msgstr "Senaste taggar" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Featured" msgstr "Profilerade" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" -msgstr "Populärt" +msgstr "Populära" #. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." @@ -9679,9 +9666,8 @@ msgid "Repeat this notice?" msgstr "Upprepa denna notis?" #. TRANS: Button title to repeat a notice on notice repeat form. -#, fuzzy msgid "Repeat this notice." -msgstr "Upprepa denna notis" +msgstr "Upprepa denna notis." #. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format @@ -9689,12 +9675,10 @@ msgid "Revoke the \"%s\" role from this user" msgstr "Återkalla rollen \"%s\" från denna användare" #. TRANS: Client error on action trying to visit a non-existing page. -#, fuzzy msgid "Page not found." -msgstr "API-metod hittades inte." +msgstr "Sidan kunde inte hittas." #. TRANS: Title of form to sandbox a user. -#, fuzzy msgctxt "TITLE" msgid "Sandbox" msgstr "Flytta till sandlådan" @@ -10110,16 +10094,16 @@ msgid "Choose a field to search." msgstr "Välj en tagg för att begränsa lista" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" -msgstr "%1$s - %2$s" +msgid "Remove %1$s from list %2$s" +msgstr "%1$s-listan av %2$s ." -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s-listan av %2$s ." #. TRANS: Title for top posters section. msgid "Top posters" @@ -10178,7 +10162,7 @@ msgid "Unsubscribe from this user" msgstr "Avsluta prenumerationen på denna användare" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Avsluta pren." @@ -10266,88 +10250,47 @@ msgstr "" msgid "Getting backup from file '%s'." msgstr "" -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Använd detta formulär för att redigera persontaggen." +#~ msgid "No such people tag." +#~ msgstr "Ingen sådan persontagg." -#~ msgid "Could not update people tag." -#~ msgstr "Kunde inte uppdatera persontagg." +#~ msgid "Public people tag %s" +#~ msgstr "Publik persontagg %s" -#~ msgid "People tags by you" -#~ msgstr "Persontaggar av dig" +#~ msgid "Subscribers of people tagged %1$s by %2$s" +#~ msgstr "Prenumeranter av personer som taggats %1$s av %2$s" -#~ msgid "People tags by %s" -#~ msgstr "Persontaggar av %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Publikt persontaggmoln" -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Persontaggar av %1$s, sida %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Dessa är de mest använda persontaggarna på %s" -#~ msgid "People tags for %s" -#~ msgstr "Persontaggar för %s" +#~ msgid "People tag cloud" +#~ msgstr "Persontaggmoln" + +#~ msgid "Tag %s" +#~ msgstr "Tagg %s" + +#~ msgid "Tag user" +#~ msgstr "Tagga användare" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Svar till %1$s, sida %2$s" - -#~ msgid "People tagged %s by you" -#~ msgstr "Personer taggade %s av dig" - -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Problem med att spara profile_tag-inkorg." - -#~ msgid "Groups with most members" -#~ msgstr "Grupper med flest medlemmar" - -#~ msgid "Groups with most posts" -#~ msgstr "Grupper med flest inlägg" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Beskriv gruppen eller ämnet" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Ta bort denna grupp" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Personer" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Tagg" -#, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Redigera profilinställningar" +#~ msgctxt "LABEL" +#~ msgid "Tags by you" +#~ msgstr "Taggar av dig" + +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Redigera taggar" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Personer %s prenumererar på" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Alla prenumerationer" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Personer" - -#~ msgid "User" -#~ msgstr "Användare" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Taggar i %ss notiser" - -#~ msgid "All subscriptions" -#~ msgstr "Alla prenumerationer" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Personer" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Personer som prenumererar på %s" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 520a237480..4bfb3955f5 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:57+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -112,7 +112,7 @@ msgstr "అందుబాటు అమరికలను భద్రపరచ #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -150,9 +150,11 @@ msgstr "లోనికి ప్రవేశించలేదు." msgid "No such profile." msgstr "అటువంటి ఫైలు లేదు." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "అటువంటి ట్యాగు లేదు." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -174,7 +176,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "చందాచేరారు" @@ -602,7 +604,7 @@ msgstr "పూర్తి పేరు చాలా పెద్దగా ఉ #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2211,7 +2213,7 @@ msgid "Invalid alias: \"%s\"" msgstr "తప్పుడు మారుపేరు: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "ఎంపికలు భద్రమయ్యాయి." @@ -2234,11 +2236,6 @@ msgstr "సరైన ఈమెయిల్ చిరునామా కాదు msgid "No tagger or ID." msgstr "Jabber ID లేదు." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "అటువంటి ట్యాగు లేదు." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "స్థానిక వాడుకరి కాదు." @@ -4036,26 +4033,26 @@ msgstr "" msgid "People search" msgstr "వ్యక్తుల అన్వేషణ" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "ప్రజా కాలరేఖ, పేజీ %d" +msgid "Public list %s" +msgstr "ట్యాగు మేఘం" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "%1$sకి స్పందనలు, %2$dవ పేజీ" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** అనేది [స్టేటస్‌నెట్](http://status.net/) అనే స్వేచ్ఛా ఉపకరణ అధారిత [సూక్ష్మ-బ్లాగింగు]" "(http://en.wikipedia.org/wiki/Micro-blogging) సేవ అయిన %%%%site.name%%%%లో ఒక " @@ -4178,10 +4175,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "[హ్యాష్‌ట్యాగు](%%doc.tags%%)తో ఇంకా ఎవరూ నోటీసులు వ్రాయలేదు." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" @@ -4204,23 +4203,23 @@ msgstr "" "చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" "doc.help%%%%))" -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "[హ్యాష్‌ట్యాగు](%%doc.tags%%)తో ఇంకా ఎవరూ నోటీసులు వ్రాయలేదు." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "%sకి చందా చేరారు." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4589,45 +4588,45 @@ msgstr "" "ఇది %%site.name%%, స్వేచ్ఛా మృదూపకరమైన [స్టేటస్‌నెట్](http://status.net/) అనే పనిముట్టుపై " "ఆధారపడిన ఒక [మైక్రో-బ్లాగింగు](http://en.wikipedia.org/wiki/Micro-blogging) సేవ." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "ట్యాగు మేఘం" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "%sలో అత్యంత ప్రాచుర్యమైన ట్యాగులు ఇవి" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "[హ్యాష్‌ట్యాగు](%%doc.tags%%)తో ఇంకా ఎవరూ నోటీసులు వ్రాయలేదు." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "మీరే మొదటివారవ్వండి!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "ట్యాగు మేఘం" +msgid "List cloud" +msgstr "జాబితా దొరకలేదు." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" @@ -4992,7 +4991,7 @@ msgstr "" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "చందాచేరండి" @@ -5019,7 +5018,21 @@ msgstr "ట్యాగులని భద్రపరచలేకపోయా msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5202,10 +5215,10 @@ msgstr "ఈ సైటులో మీరు వాడుకరలకి పా msgid "User is already sandboxed." msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. #, fuzzy, php-format -msgid "Not a valid people tag: %s." +msgid "Not a valid list: %s." msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" #. TRANS: Page title for page showing self tags. @@ -5492,19 +5505,19 @@ msgid "Notice deleted." msgstr "నోటీసుని తొలగించాం." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" @@ -5541,11 +5554,11 @@ msgid "" "yet." msgstr "ఇది %s మరియు మిత్రుల కాలరేఖ కానీ ఇంకా ఎవరూ ఏమీ రాయలేదు." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5558,7 +5571,7 @@ msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%ac msgid "Listed" msgstr "లైసెన్సు" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "అన్నీ చూపించు" @@ -6063,7 +6076,7 @@ msgstr "" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "గుంపుని సృష్టించడానికి మీరు లోనికి ప్రవేశించాలి." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6071,16 +6084,16 @@ msgstr "గుంపుని సృష్టించడానికి మీ msgid "No ID given." msgstr "జోడింపులు లేవు." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం" -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s చందాదార్లు, పేజీ %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6215,41 +6228,41 @@ msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" msgid "You cannot tag this user." msgstr "ఈ వాడుకరికి మీరు సందేశాన్ని పంపించలేరు." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "వాడుకరి ప్రొఫైలు" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. #, fuzzy, php-format -msgid "Tag %s" -msgstr "ట్యాగులు" +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "పరిమితులు" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" msgid "Error" msgstr "పొరపాటు" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "వాడుకరి ప్రొఫైలు" -#. TRANS: Fieldset legend for people tag form. +#. TRANS: Fieldset legend for list form. #, fuzzy -msgid "Tag user" -msgstr "ట్యాగులు" +msgid "List user" +msgstr "పరిమితులు" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "ట్యాగులు" +msgid "Lists" +msgstr "పరిమితులు" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" @@ -6259,13 +6272,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "ట్యాగులు" -#. TRANS: Success message if people tags are saved. -msgid "Tags saved." +#. TRANS: Success message if lists are saved. +#, fuzzy +msgid "Lists saved." msgstr "ట్యాగులు భద్రమయ్యాయి." #. TRANS: Page notice. #, fuzzy -msgid "Use this form to add tags to your subscribers or subscriptions." +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6289,10 +6303,10 @@ msgstr "వాడుకరికి ప్రొఫైలు లేదు." msgid "Unsubscribed" msgstr "చందామాను" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s చందాదార్లు, పేజీ %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -6943,21 +6957,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "కొత్త చందాని చేర్చలేకపోయాం." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "కొత్త చందాని చేర్చలేకపోయాం." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7562,7 +7576,7 @@ msgid "Cancel" msgstr "రద్దుచేయి" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "భద్రపరచు" @@ -7610,14 +7624,14 @@ msgid "Do not use this method!" msgstr "ఈ గుంపును తొలగించకు" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "%2$sలో %1$sకి స్పందనలు." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!" #. TRANS: Title. @@ -9242,14 +9256,14 @@ msgstr "కొత్త చందాని చేర్చలేకపోయా msgid "No oEmbed API endpoint available." msgstr "IM అందుబాటులో లేదు." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "ట్యాగు" +msgid "List" +msgstr "లంకెలు" -#. TRANS: Field title for people tag. -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +#. TRANS: Field title for list. +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" #. TRANS: Field title for description of list. @@ -9270,11 +9284,11 @@ msgstr[1] "గుంపు లేదా విషయాన్ని గురి msgid "Delete this list." msgstr "ఈ వాడుకరిని తొలగించండి." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgctxt "HEADER" msgid "Search" msgstr "వెతుకు" @@ -9309,7 +9323,7 @@ msgstr "చందాదారులు" msgid "Subscribers to %1$s list by %2$s." msgstr "%sకి చందా చేరారు." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9335,7 +9349,7 @@ msgstr "ఫ్రొఫైలు అమరికలని మార్చండ msgid "Edit" msgstr "మార్చు" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9348,48 +9362,57 @@ msgid "List Subscriptions" msgstr "చందాలు" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "%sకి చందా చేరారు." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s మరియు %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "ప్రాచుర్య నోటీసులు" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "మార్చు" +msgid "Edit lists" +msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "ట్యాగులు" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9402,11 +9425,12 @@ msgstr "ప్రాచుర్య నోటీసులు" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s చందాదార్లు, పేజీ %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "జాబితా దొరకలేదు." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10010,16 +10034,16 @@ msgid "Choose a field to search." msgstr "" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s మరియు %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s మరియు %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10079,7 +10103,7 @@ msgid "Unsubscribe from this user" msgstr "ఈ వాడుకరి నుండి చందామాను" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "చందామాను" @@ -10166,84 +10190,47 @@ msgid "Getting backup from file '%s'." msgstr "" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "గుంపుని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." +#~ msgid "No such people tag." +#~ msgstr "అటువంటి ట్యాగు లేదు." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "గుంపుని తాజాకరించలేకున్నాం." +#~ msgid "Public people tag %s" +#~ msgstr "ప్రజా కాలరేఖ, పేజీ %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "%s యొక్క పునరావృతాలు" +#~ msgid "Public people tag cloud" +#~ msgstr "ట్యాగు మేఘం" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "%1$sకి స్పందనలు, %2$dవ పేజీ" +#~ msgid "These are most used people tags on %s" +#~ msgstr "%sలో అత్యంత ప్రాచుర్యమైన ట్యాగులు ఇవి" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "%s యొక్క పునరావృతాలు" +#~ msgid "People tag cloud" +#~ msgstr "ట్యాగు మేఘం" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "%1$sకి స్పందనలు, %2$dవ పేజీ" +#~ msgid "Tag %s" +#~ msgstr "ట్యాగులు" #, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." - -#~ msgid "Groups with most members" -#~ msgstr "ఎక్కువమంది సభ్యులున్న గుంపులు" - -#~ msgid "Groups with most posts" -#~ msgstr "ఎక్కువ టపాలున్న గుంపులు" +#~ msgid "Tag user" +#~ msgstr "ట్యాగులు" #, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "గుంపుని లేదా విషయాన్ని వివరించండి." - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "ఈ గుంపుని తొలగించు." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "ప్రజలు" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "ట్యాగు" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "ఫ్రొఫైలు అమరికలని మార్చు" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "మార్చు" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "%s చందాచేరిన వ్యక్తులు." +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s మరియు %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "అన్ని చందాలు" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "ప్రజలు" - -#~ msgid "User" -#~ msgstr "వాడుకరి" - -#~ msgid "All subscriptions" -#~ msgstr "అన్ని చందాలు" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "ప్రజలు" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "%sకి చందాచేరిన వ్యక్తులు." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index 09e8ab0004..05eab010b3 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:19:59+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-core\n" @@ -123,7 +123,7 @@ msgstr "Sagipin ang mga itinakdang mapupuntahan" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -161,9 +161,11 @@ msgstr "Hindi nakalagda." msgid "No such profile." msgstr "Walang ganyang balangkas." -#. TRANS: Client error displayed trying to reference a non-existing people tag. -msgid "No such people tag." -msgstr "Walang ganyang tatak ng mga tao." +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. +msgid "No such list." +msgstr "Walang ganyang talaan." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. msgid "You cannot tag an OMB 0.1 remote profile with this action." @@ -189,7 +191,7 @@ msgstr "" "tagapaghain ay hind tumutugon ng tama, mangyaring subukang subukan pa ulit " "mamaya." -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Tumatanggap na ng sipi" @@ -297,7 +299,7 @@ msgstr "Pakain para sa mga kaibigan ni %s (Atom)" msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -"Ito ang guhit pampanahon para kay %s at mga kaibigan ngunit walang pang " +"Ito ang guhit pampanahon para kay %s at mga kaibigan ngunit wala pang " "nagpapaskil ng anuman." #. TRANS: Encouragement displayed on logged in user's empty timeline. @@ -633,7 +635,7 @@ msgstr "Napakahaba ng buong pangalan (pinakamataas ang 255 mga panitik)." #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -642,8 +644,8 @@ msgstr "Napakahaba ng buong pangalan (pinakamataas ang 255 mga panitik)." #, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Napakahaba ng paglalarawan (pinakamataas na ang %d panitik)." +msgstr[1] "Napakahaba ng paglalarawan (pinakamataas na ang %d mga panitik)." #. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: API validation exception thrown when location does not validate. @@ -2276,33 +2278,28 @@ msgid "Invalid alias: \"%s\"" msgstr "Hindi katanggap-tanggap na taguri: \"%s\"" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Nasagip ang mga mapagpipilian." #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "Burahin ang tatak na %s ng mga tao" +msgstr "Burahin ang talaang %s" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "Baguhin ang tatak ng mga tao na %s" +msgstr "Baguhin ang talaang %s" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. msgid "No tagger or ID." msgstr "Walang tagapagtatak o ID." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Walang ganyang tatak." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Hindi isang katutubong tagagamit." @@ -2312,9 +2309,8 @@ msgid "You must be the creator of the tag to edit it." msgstr "Dapat na ikaw ang manlilikha ng tatak upang mabago ito." #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "Gamitin ang pormularyong ito upang baguhin ang pangkat." +msgstr "Gamitin ang pormularyong ito upang baguhin ang talaan." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. msgid "Delete aborted." @@ -2348,9 +2344,8 @@ msgstr "" "ring magpatuloy?" #. TRANS: TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "Hindi maisapanahon ang tagagamit." +msgstr "Hindi maisapanahon ang talaan." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -3642,6 +3637,8 @@ msgid "" "Be the first to [post on this topic](%%%%action.newnotice%%%%?" "status_textarea=%s)!" msgstr "" +"Maging pinakauna sa [pagpaskil ng paksang ito](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" #. TRANS: Text for not logged in users making a query for notices without results. #. TRANS: This message contains Markdown links. @@ -3650,6 +3647,9 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +"Bakit hindi [magpatala ng isang akawnt](%%%%action.register%%%%) at maging " +"pinakauna sa [pagpaskil ng paksang ito](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" #. TRANS: RSS notice search feed title. %s is the query. #, php-format @@ -3661,12 +3661,15 @@ msgstr "Mga pagsasapanahon na may \"%s\"" #, php-format msgid "Updates matching search term \"%1$s\" on %2$s." msgstr "" +"Mga pagsasapanahon na tumutugma sa katagang panghanap na \"%1$s\" sa %2$s." #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. msgid "" "This user doesn't allow nudges or hasn't confirmed or set their email " "address yet." msgstr "" +"Hindi pinapahintulutan ng tagagamit na ito ang mga pagdunggol o hindi pa " +"nagtitiyak o nagtatakda ng kanilang tirahan ng e-liham." #. TRANS: Page title after sending a nudge. msgid "Nudge sent" @@ -4139,31 +4142,34 @@ 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 "" +"Maghanap ng mga tao sa %%site.name%% ayon sa kanilang pangalan, " +"kinalalagyan, o paglalarawan. Paghiwa-hiwalayin ang mga kataga sa " +"pamamagitan ng mga puwang; dapat silang 3 mga panitik o mahigit pa." #. TRANS: Title of a page where users can search for other users. msgid "People search" msgstr "Paghahanap ng mga tao" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. -#, php-format -msgid "Public people tag %s" -msgstr "Pangmadlang tatak ng mga tao na%s" +#. TRANS: Title for list page. +#. TRANS: %s is a list. +#, fuzzy, php-format +msgid "Public list %s" +msgstr "Pangmadlang mga talaan mo ng mga tao" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. -#, php-format -msgid "Public people tag %1$s, page %2$d" +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. +#, fuzzy, php-format +msgid "Public list %1$s, page %2$d" msgstr "Pangmadlang tatak ng mga tao na %1$s, pahina %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "Ang mga tatak ng mga tao ay kung paano mo pinagpapangkat-pangkat ang " "magkakahalintulad na mga tao sa %%site.name%%, isang palingkuran ng " @@ -4178,15 +4184,15 @@ msgstr "Walang tagapagtatak." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Mga taong tinatakan ni %2$s ng %1$s." +msgstr "Mga taong itinala ni %1$s sa %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Mga taong tinatakan ni %2$s ng %1$s, pahina %3$d" +msgstr "Mga taong itinala ni %2$s sa %1$s, pahina %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. @@ -4194,45 +4200,41 @@ msgid "Creator" msgstr "Manlilikha" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Pribadong mga tatak mo ng mga tao" +msgstr "Pribadong mga talaan mo ng mga tao" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Pangmadlang mga tatak mo ng mga tao" +msgstr "Pangmadlang mga talaan mo ng mga tao" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Mga pagtatatak mo" +msgstr "Mga talaan mo" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Mga talaan sa pamamagitan ng %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Mga pabatid ni %1$s, pahina %2$d" +msgstr "Mga talaan ni %1$s, pahina %2$d" #. TRANS: Client error displayed when trying view another user's private lists. -#, fuzzy msgid "You cannot view others' private lists" -msgstr "Hindi mo maaaring makita ang pribadong mga tatak ng mga tao ng iba" +msgstr "Hindi mo maaaring tingnan ang pribadong mga talaan ng iba" #. TRANS: Mode selector label. msgid "Mode" msgstr "Paraan" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Kahong-labasan para sa %s" +msgstr "Mga talaan para sa %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -4261,7 +4263,7 @@ msgstr "Pumunta" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4269,35 +4271,36 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"Ito ay mga tatak ng mga tao na nilikha ni **%s**. Ang mga tatak ng mga tao " -"ay kung paano mo pinagpapangkat-pangkat ang magkakahalintulad na mga tao sa %" -"%site.name%%, isang palingkuran ng [maliitang pagboblog](http://en.wikipedia." -"org/wiki/Micro-blogging) na nakabatay sa kasangkapan ng Malayang Sopwer na " -"[StatusNet](http://status.net/). Kaya't maginhawa mong masusubaybay ang kung " -"ano ang kanilang ginagawa sa pamamagitan ng pagpapatanggap ng mga sipi sa " -"guhit ng panahon ng tatak." +"Ito ay mga talaang nilikha ni **%s**. Ang mga talaan ay kung paano mo " +"pinagpapangkat-pangkat ang magkakahalintulad na mga tao sa %%site.name%%, " +"isang palingkuran ng [maliitang pagboblog](http://en.wikipedia.org/wiki/" +"Micro-blogging) na nakabatay sa kasangkapan ng Malayang Sopwer na [StatusNet]" +"(http://status.net/). Kaya't maginhawa mong masusubaybay ang kung ano ang " +"kanilang ginagawa sa pamamagitan ng pagpapatanggap ng mga sipi sa guhit ng " +"panahon ng tatak." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" -"Si %s ay hindi pa lumilikha ng anumang [mga tatak ng mga tao](%%%%doc.tags%%%" -"%)." +"Si %s ay hindi pa lumilikha ng anumang [mga talaan](%%%%doc.lists%%%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Mga talaang may %s sa loob nila" -#, fuzzy, php-format +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Mga pabatid na tinatakan ng %1$s, pahina %2$d" +msgstr "Mga talaang may %1$s, pahina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4305,51 +4308,49 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "tag's timeline." msgstr "" -"Ito ay mga tatak ng mga tao para sa **%s**. Ang mga tatak ng mga tao ay kung " -"paano mo pinagpapangkat-pangkat ang magkakahalintulad na mga tao sa %%site." -"name%%, isang palingkuran ng [maliitang pagboblog](http://en.wikipedia.org/" -"wiki/Micro-blogging) na nakabatay sa kasangkapan ng Malayang Sopwer na " -"[StatusNet](http://status.net/). Kaya't maginhawa mong masusubaybay ang kung " -"ano ang kanilang ginagawa sa pamamagitan ng pagpapatanggap ng mga sipi sa " -"guhit ng panahon ng tatak." +"Ito ay mga talaan para sa **%s**. Ang mga talaan ay kung paano mo " +"pinagpapangkat-pangkat ang magkakahalintulad na mga tao sa %%site.name%%, " +"isang palingkuran ng [maliitang pagboblog](http://en.wikipedia.org/wiki/" +"Micro-blogging) na nakabatay sa kasangkapan ng Malayang Sopwer na [StatusNet]" +"(http://status.net/). Kaya't maginhawa mong masusubaybay ang kung ano ang " +"kanilang ginagawa sa pamamagitan ng pagpapatanggap ng mga sipi sa guhit ng " +"panahon ng tatak." -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "" -"Si %s ay hindi pa lumilikha ng anumang [mga tatak ng mga tao](%%%%doc.tags%%%" -"%)." +msgstr "Si %s ay hindi pa [naitatala](%%%%doc.lists%%%%) ninuman." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s" +msgstr "Mga nagpapasipi sa mga talaang %1$s ni %2$s." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Mga nagpapasipi ng mga taong tinatakan ni %2$s ng %1$s, pahina %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "Tumatanggap ng sipi mula sa %s." +msgstr "Mga talaang pinagsisipian ni %s" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "Mga pagpapasipi ng mga tatak ng mga tao ni %1$s, pahina %2$d" +msgstr "Mga talaang pinagsisipian ni %1$s, pahina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4357,13 +4358,13 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"Ito ay mga tatak ng mga tao na pinasisipi ni **%s**. Ang mga tatak ng mga " -"tao ay kung paano mo pinagpapangkat-pangkat ang magkakahalintulad na mga tao " -"sa %%site.name%%, isang palingkuran ng [maliitang pagboblog](http://en." -"wikipedia.org/wiki/Micro-blogging) na nakabatay sa kasangkapan ng Malayang " -"Sopwer na [StatusNet](http://status.net/). Kaya't maginhawa mong " -"masusubaybay ang kung ano ang kanilang ginagawa sa pamamagitan ng " -"pagpapatanggap ng mga sipi sa guhit ng panahon ng tatak." +"Ito ay mga talaang pinasisipi ni **%s**. Ang mga talaan ay kung paano mo " +"pinagpapangkat-pangkat ang magkakahalintulad na mga tao sa %%site.name%%, " +"isang palingkuran ng [maliitang pagboblog](http://en.wikipedia.org/wiki/" +"Micro-blogging) na nakabatay sa kasangkapan ng Malayang Sopwer na [StatusNet]" +"(http://status.net/). Kaya't maginhawa mong masusubaybay ang kung ano ang " +"kanilang ginagawa sa pamamagitan ng pagpapatanggap ng mga sipi sa guhit ng " +"panahon ng tatak." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -4402,6 +4403,9 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" +"Mapapagana ang karagdagang mga pampasak at kinakamay na maiaayos. Tingnan " +"ang kasulatan ng pampasak na nasa " +"Internet para sa mas marami pang mga detalye." #. TRANS: Admin form section header msgid "Default plugins" @@ -4411,6 +4415,8 @@ msgstr "Likas na nakatakdang mga pamasak" msgid "" "All default plugins have been disabled from the site's configuration file." msgstr "" +"Hindi pinagagana ang lahat ng likas na nakatakdang mga pampasak mula sa " +"talaksan ng pagkakaayos ng sityo." #. TRANS: Client error displayed if the notice posted has too many characters. msgid "Invalid notice content." @@ -4421,6 +4427,8 @@ msgstr "Hindi katanggap-tanggap na nilalaman ng pabatid." #, php-format msgid "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." msgstr "" +"Hindi akma ang lisensiyang \"%1$s\" ng pabatid sa lisensiyang \"%2$s\" ng " +"sityo." #. TRANS: Client error displayed when trying to add an unindentified field to profile. #. TRANS: %s is a field name. @@ -4436,6 +4444,7 @@ msgstr "Mga kinalabasan ng paghahanap" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." msgstr "" +"Ang sinulid ng paghahanap ay dapat na hindi bababa sa 3 mga panitik ang haba." #. TRANS: Page title for profile settings. msgid "Profile settings" @@ -4457,6 +4466,8 @@ msgstr "Kabatiran sa balangkas" #. TRANS: Field title on group edit form. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" +"1 hanggang 64 maliliit na mga titik o mga bilang, walang bantas o mga " +"patlang." #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. @@ -4485,8 +4496,8 @@ msgstr "URL ng iyong bahay-pahina, blog, o balangkas na nasa ibang sityo." #, php-format msgid "Describe yourself and your interests in %d character." msgid_plural "Describe yourself and your interests in %d characters." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ilarawan ang sarili mo at ang mga hilig mo sa loob ng %d panitik." +msgstr[1] "Ilarawan ang sarili mo at mga hilig mo sa loob ng %d mga panitik." #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Text area title on account registration page. @@ -4582,8 +4593,8 @@ msgstr "Gawing nakikita lamang ng mga tagasunod ko ang mga pagsasapanahon" #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Napakahaba ng talambuhay (pinakamataas na ang %d panitik)." +msgstr[1] "Napakahaba ng talambuhay (pinakamataas na ang %d mga panitik)." #. TRANS: Validation error in form for profile settings. #. TRANS: Client error displayed trying to save site settings without a timezone. @@ -4668,6 +4679,8 @@ msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" +"Ito ang pangmadlang guhit ng panahon para sa %%site.name%% ngunit wala pang " +"nagpapaskil ng anuman." #. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user. msgid "Be the first to post!" @@ -4678,6 +4691,8 @@ msgstr "Maging pinakauna sa pagpapaskil!" msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" +"Bakit hindi [magpatala ng isang akawnt] (%%action.register%%) at maging una " +"sa pagpapaskil!" #. TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices. #. TRANS: This message contains Markdown links. Please mind the formatting. @@ -4688,6 +4703,12 @@ msgid "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" +"Ito ang %%site.name%%, isang palingkuran ng [maliitang pagboblog](http://en." +"wikipedia.org/wiki/Micro-blogging) na nakabatay sa kasangkapan ng Malayang " +"Sopwer na [StatusNet](http://status.net/). [Sumali na ngayon](%%action." +"register%%) upang makapagbahagi ng mga pabatid tungkol sa sarili mo sa mga " +"kaibigan, kamag-anak, at mga kasamahan! ([Magbasa ng marami pa](%%doc.help%" +"%))" #. TRANS: Message for not logged in users at a closed site trying to view the public feed of notices. #. TRANS: This message contains Markdown links. Please mind the formatting. @@ -4697,47 +4718,53 @@ msgid "" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." msgstr "" +"Ito ang %%%%site.name%%%%, isang palingkuran ng [maliitang pagboblog](http://" +"en.wikipedia.org/wiki/Micro-blogging) na nakabatay sa kasangkapan ng " +"Malayang Sopwer na [StatusNet](http://status.net/)." -#. TRANS: Title for page with public people tag cloud. -msgid "Public people tag cloud" -msgstr "Ulap ng pangmadlang tatak ng mga tao" +#. TRANS: Title for page with public list cloud. +#, fuzzy +msgid "Public list cloud" +msgstr "Ulap ng pangmadlang tatak" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are most used people tags on %s" -msgstr "Ito ang mga pinaka ginagamit na mga tatak ng mga tao sa %s" +#, fuzzy, php-format +msgid "These are largest lists on %s" +msgstr "Ito ang mga pinakatanyag na kamakailang mga tatak sa %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." -msgstr "" +#, fuzzy, php-format +msgid "No one has [listed](%%doc.tags%%) anyone yet." +msgstr "Wala pang [nagtatatak](%%doc.tags%%) ng sinuman." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. -msgid "Be the first to tag someone!" +#. TRANS: Additional empty list message on page with public list cloud for logged in users. +#, fuzzy +msgid "Be the first to list someone!" msgstr "Maging pinakauna sa pagtatatak ng isang tao!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). -#, php-format +#, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Bakit hindi [magpatala ng isang akawnt] (%%action.register%%) at maging una " "sa pagtatatak ng isang tao!" -#. TRANS: DT element on on page with public people tag cloud. -msgid "People tag cloud" -msgstr "Ulap ng tatak ng mga tao" +#. TRANS: DT element on on page with public list cloud. +#, fuzzy +msgid "List cloud" +msgstr "Hindi natagpuan ang tala." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. -#, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" -msgstr[0] "" -msgstr[1] "" +#. TRANS: Link title for number of listed people. %d is the number of listed people. +#, fuzzy, php-format +msgid "1 person listed" +msgid_plural "%d people listed" +msgstr[0] "1 taong natatakan" +msgstr[1] "%d mga taong natatakan" #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format @@ -4760,6 +4787,8 @@ msgstr "Ito ang mga pinakatanyag na kamakailang mga tatak sa %s" #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" +"Wala pang nagpapaskil ng isang pabatid na may isang [tatak ng sindirit](%%" +"doc.tags%%)." #. TRANS: Message shown to a logged in user for the public tag cloud #. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag. @@ -4776,6 +4805,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" msgstr "" +"Bakit hindi [magpatala ng isang akawnt] (%%action.register%%) at maging una " +"sa pagpapaskil ng isa!" #. TRANS: Client error displayed trying to recover password while already logged in. msgid "You are already logged in!" @@ -4800,16 +4831,19 @@ msgstr "Kamalian sa kodigo ng paniniyak." #. TRANS: Client error displayed trying to recover password with too old a recovery code. msgid "This confirmation code is too old. Please start again." msgstr "" +"Napakaluma na ng kodigo ng pagtitiyak na ito. Mangyaring magsimula ulit." #. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password. msgid "Could not update user with confirmed email address." -msgstr "" +msgstr "Hindi maisapanahon ang tagagamit na may natiyak na tirahan ng e-liham." #. TRANS: Page notice for password recovery page. msgid "" "If you have forgotten or lost your password, you can get a new one sent to " "the email address you have stored in your account." msgstr "" +"Kung nakalimutan o naiwala mo ang iyong hudyat, maaari kang kumuha ng isang " +"bago na ipapadala sa tirahan ng e-liham na inimbak mo sa iyong akawnt." #. TRANS: Page notice for password change page. msgid "You have been identified. Enter a new password below." @@ -4993,16 +5027,19 @@ msgstr "Magpatala" msgid "" "I understand that content and data of %1$s are private and confidential." msgstr "" +"Nauunawaan ko na ang nilalaman at datong iyan ng %1$s ay pribado at palihim." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with a specified copyright owner. #. TRANS: %1$s is the license owner. #, php-format msgid "My text and files are copyright by %1$s." -msgstr "" +msgstr "Ang mga teksto at mga talaksan ko ay karapatang-ari ni %1$s." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors. msgid "My text and files remain under my own copyright." msgstr "" +"Ang mga teksto at mga talaksan ko ay nananatiling nasa ilalim ng sarili kong " +"karapatang-ari." #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. msgid "All rights reserved." @@ -5014,6 +5051,9 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +"Makukuha ang teksto at mga talaksan ko sa ilalim ng %s maliban na lamang ang " +"pribadong datong ito: hudyat, tirahan ng e-liham, tirahan ng IM, at numero " +"ng telepono." #. TRANS: Text displayed after successful account registration. #. TRANS: %1$s is the registered nickname, %2$s is the profile URL. @@ -5058,6 +5098,9 @@ msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" +"(Dapat kang makatanggap ng isang mensahe sa pamamagitan ng e-liham sa loob " +"ng ilang mga sandali, na may mga panuto kung paano titiyakin ang tirahan mo " +"ng e-liham.)" #. TRANS: Page notice for remote subscribe. This message contains Markdown links. #. TRANS: Ensure to keep the correct markup of [link description](link). @@ -5067,6 +5110,10 @@ msgid "" "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" +"Upang makapagpasipi, maaari kang [lumagda](%%action.login%%), o [magpatala](%" +"%action.register%%) ng isang bagong akawnt. Kung mayroon ka nang isang " +"akawnt sa isang [kaakmang sityo ng maliitang pagboblog](%%doc.openmublog%" +"%), ipasok ang URL mo ng balangkas sa ibaba." #. TRANS: Page title for Remote subscribe. msgid "Remote subscribe" @@ -5091,11 +5138,12 @@ msgstr "URL ng balangkas" #. TRANS: Field title on page for remote subscribe. msgid "URL of your profile on another compatible microblogging service." msgstr "" +"URL ng balangkas mo sa ibang kaakmang palingkuran ng maliitang pagboblog." #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Pumayag na tumanggap ng sipi" @@ -5122,8 +5170,28 @@ msgstr "Hindi makakuha ng isang kahalip ng kahilingan." #. TRANS: Client error displayed when trying to (un)tag an OMB 0.1 remote profile. msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "" +"Hindi mo maaaring tatakan o hindi tatakan ang isang malayong balangkas ng " +"OMB 0.1 sa pamamagitan ng galaw na ito." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, fuzzy, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" +"Nagkaroon ng isang hindi inaasahang kamalian habang tinatatakan ang %s." + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, fuzzy, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" +"Nagkaroon ng suliranin sa pagtatatak ng %s. Marahil ang malayong " +"tagapaghain ay hind tumutugon ng tama, mangyaring subukang subukan pa ulit " +"mamaya." + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "Hindi na tinatakan" @@ -5242,6 +5310,8 @@ msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Lumalampas ang ikinargang talaksan sa kaatasang MAX_FILE_SIZE na tinukoy sa " +"loob ng pormularyo ng HTML." #. TRANS: Client exception. msgid "The uploaded file was only partially uploaded." @@ -5318,10 +5388,10 @@ msgstr "Hindi mo maikakahon sa buhangin ang mga tagagamit sa sityong ito." msgid "User is already sandboxed." msgstr "Nakakahon na sa buhangin ang tagagamit." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Hindi isang katanggap-tanggap na tatak ng mga tao: %s." #. TRANS: Page title for page showing self tags. @@ -5383,7 +5453,11 @@ msgstr "Balangkas ng aplikasyon" msgid "Created by %1$s - %2$s access by default - %3$d user" msgid_plural "Created by %1$s - %2$s access by default - %3$d users" msgstr[0] "" +"Nilikha ni %1$s - pagpuntang %2$s ayon sa likas na pagtatakda - %3$d " +"tagagamit" msgstr[1] "" +"Nilikha ni %1$s - pagpuntang %2$s ayon sa likas na pagtatakda - %3$d mga " +"tagagamit" #. TRANS: Header on the OAuth application page. msgid "Application actions" @@ -5408,20 +5482,24 @@ msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" +"Paunawa: Tinatangkilik ang mga lagdang HMAC-SHA1. Hindi tinatangkilik ang " +"pamamaraan ng lagda ng lantad na teksto." #. TRANS: Text in confirmation dialog to reset consumer key and secret for an OAuth application. msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" +"Nakatitiyak ka bang nais mong itakdang muli ang iyong susi at lihim ng " +"tagaubos?" #. TRANS: Title for all but the first page of favourite notices of a user. #. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number. #, php-format msgid "%1$s's favorite notices, page %2$d" -msgstr "" +msgstr "Mga pabatid na kinagigiliwan ni %1$s, pahina %2$d" #. TRANS: Server error displayed when favourite notices could not be retrieved from the database. msgid "Could not retrieve favorite notices." -msgstr "" +msgstr "Hindi makuhang muli ang kinagigiliwang mga pabatid." #. TRANS: Feed link text. %s is a username. #, php-format @@ -5454,6 +5532,9 @@ msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" msgstr "" +"Si %s ay hindi pa nagdaragdag ng anumang kinagigiliwang mga pabatid. " +"Magpaskil ng isang bagay na makagigiliwan na maaari nilang idagdag sa " +"kanilang mga kinagigiliwan na :)" #. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in. #. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page. @@ -5464,6 +5545,10 @@ msgid "" "action.register%%%%) and then post something interesting they would add to " "their favorites :)" msgstr "" +"Si %s ay hindi pa nagdaragdag ng anumang kinagigiliwang mga pabatid. Bakit " +"hindi [magpatala ng isang akawnt](%%%%action.register%%%%) at magpaskil " +"pagkaraan ng isang bagay na makagigiliwan na maaari nilang idagdag sa " +"kanilang mga kinagigiliwan na :)" #. TRANS: Page notice for show favourites page. msgid "This is a way to share what you like." @@ -5564,6 +5649,11 @@ msgid "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" +"Ang **%s** ay isang pangkat ng tagagamit sa %%%%site.name%%%%, isang " +"palingkuran ng [maliitang pagboblog](http://en.wikipedia.org/wiki/Micro-" +"blogging) na nakabatay sa kasangkapan ng Malayang Sopwer na [StatusNet]" +"(http://status.net/). Ang mga kasapi nito ay nagbabahagi ng maiikling mga " +"mensahe tungkol sa kanilang buhay at mga hilig. " #. TRANS: Title for list of group administrators on a group page. msgctxt "TITLE" @@ -5577,6 +5667,8 @@ msgstr "Walang ganyang mensahe." #. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in. msgid "Only the sender and recipient may read this message." msgstr "" +"Tanging ang nagpala at tagatanggap lamang ang maaaring bumasa ng mensaheng " +"ito." #. TRANS: Page title for single direct message display when viewing user is the sender. #. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp. @@ -5599,64 +5691,62 @@ msgid "Notice deleted." msgstr "Binura ang pabatid." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "Pribadong guhit ng panahon ng mga taong tinatakan mo ng %s" +msgstr "Pribadong guhit ng panahon para sa talaan mo ng %1$s, pahina %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is a page number. +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "" -"Guhit ng panahon para sa mga taong tinatakan ni %2$s ng %1$s, pahina %3$d" +msgstr "Guhit ng panahon para sa talaan mo ng %1$s, pahina %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. -#, fuzzy, php-format +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "" -"Guhit ng panahon para sa mga taong tinatakan ni %2$s ng %1$s, pahina %3$d" +msgstr "Guhit ng panahon para sa talaan ni %2$s ng %1$s, pahina %3$d" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Private timeline of %s list by you" -msgstr "Pribadong guhit ng panahon ng mga taong tinatakan mo ng %s" +msgstr "Pribadong guhit ng panahon ng talaan mo ng %s" #. TRANS: Title for public list timeline where the viewer is the tagger. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Timeline for %s list by you" -msgstr "Guhit ng panahon para sa mga taong tinatakan mo ng %s" +msgstr "Guhit ng panahon para sa talaan mo ng %s" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "Guhit ng panahon para sa mga taong tinatakan ni %2$s ng %1$s" +msgstr "Guhit ng panahon para sa talaan %2$s ng %1$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "Pasubo para sa mga taong tinatakan ni %2$s ng %1$s (Atom)" +msgstr "Pasubo para sa talaan ni %2$s ng %1$s (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." msgstr "" -"Ito ang guhit ng panahon para sa mga taong tinatakan ni %2$s ng %1$s ngunit " -"wala pang isang nagpapaskil ng anuman." +"Ito ang guhit ng panahon para sa talaan ni %2$s ng %1$s ngunit wala pang " +"isang nagpapaskil ng anuman." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "Subukang magtatak ng mas marami pang mga tao." -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "" @@ -5667,11 +5757,10 @@ msgstr "" "magsimulang sundan ang guhit ng panahong ito!" #. TRANS: Header on show list page. -#, fuzzy msgid "Listed" -msgstr "Lisensiya" +msgstr "Naitala na" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" msgstr "Ipakitang lahat" @@ -5688,9 +5777,9 @@ msgstr "Lahat ng mga nagpapasipi" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag. -#, fuzzy, php-format +#, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "Mga pabatid ni %1$s na tinatakan ng %2$d" +msgstr "Mga pabatid ni %1$s na natatakan ng %2$s" #. TRANS: Page title showing tagged notices in one user's stream. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. @@ -6085,6 +6174,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 "" +"Tagapagdala ng pagpapalipat-lipat para sa telepono mo. Kung may nalalaman " +"kang isang tagapagdala na tumatanggap ng SMS sa ibabaw ng e-liham subalit " +"hindi nakatala rito, magpadala ng e-liham upang malaman namin sa %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. msgid "No code entered." @@ -6191,9 +6283,12 @@ msgstr "" #. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" +"Hindi ka maaaring magpasipi sa isang malayong balangkas ng OMB 0.1 sa " +"pamamagitan ng galaw na ito." #. TRANS: Client error displayed when trying to perform an action while not logged in. -msgid "You must be logged in to unsubscribe to a people tag." +#, fuzzy +msgid "You must be logged in to unsubscribe from a list." msgstr "" "Dapat na nakalagda ka upang hindi magpatanggap ng sipi mula sa isang tatak " "ng mga tao." @@ -6202,16 +6297,16 @@ msgstr "" msgid "No ID given." msgstr "Walang ibinigay na ID." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. -#, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). +#, fuzzy, php-format +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Hindi mapasipian ang tagagamit na si %1$s sa tatak ng mga tao na %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Nagpasipi si %1$s ng tatak ng mga tao na %2$s ni %3$s" #. TRANS: Header for list of subscribers for a user (first page). @@ -6249,7 +6344,7 @@ msgstr "" #. TRANS: than the logged in user that has no subscribers. %s is the user nickname. #, php-format msgid "%s has no subscribers. Want to be the first?" -msgstr "" +msgstr "Walang nagpapasipi mula kay %s. Gusto mo bang maging pinakauna?" #. TRANS: Subscriber list text when looking at the subscribers for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. @@ -6261,23 +6356,25 @@ msgid "" "%s has no subscribers. Why not [register an account](%%%%action.register%%%" "%) and be the first?" msgstr "" +"Walang nagpapasipi mula kay %s. Bakit hindi [magpatala ng isang akawnt](%%%%" +"action.register%%%%) at maging pinakauna?" #. TRANS: Header for subscriptions overview for a user (not first page). #. TRANS: %1$s is a user nickname, %2$d is the page number. #, php-format msgid "%1$s subscriptions, page %2$d" -msgstr "" +msgstr "Mga pagpapasipi ni %1$s, pahina %2$d" #. TRANS: Page notice for page with an overview of all subscriptions #. TRANS: of the logged in user's own profile. msgid "These are the people whose notices you listen to." -msgstr "" +msgstr "Ito ang mga taong pinakikinigan mo ng mga pabatid." #. TRANS: Page notice for page with an overview of all subscriptions of a user other #. TRANS: than the logged in user. %s is the user nickname. #, php-format msgid "These are the people whose notices %s listens to." -msgstr "" +msgstr "Ito ang mga taong pinakikinigan ni %s ng mga pabatid." #. TRANS: Subscription list text when the logged in user has no subscriptions. #. TRANS: This message contains Markdown URLs. The link description is between @@ -6291,6 +6388,12 @@ msgid "" "featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " "automatically subscribe to people you already follow there." msgstr "" +"Hindi ka nakikinig sa ngayon sa mga pabatid ninuman, subukang magpasipi mula " +"sa kakilala mong mga tao. Subukan ang [paghahanap ng mga tao](%%action." +"peoplesearch%%), tumingin ng mga kasapi sa loob ng pangkat na makatatawag sa " +"iyo ng pansin at sa loob ng aming [tampok na mga tagagamit](%%action.featured" +"%%). Kung isa kang [tagagamit ng Twitter](%%action.twittersettings%%), kusa " +"kang makapagpapasipi mula sa mga taong sinusundan mo na doon." #. TRANS: Subscription list text when looking at the subscriptions for a of a user other #. TRANS: than the logged in user that has no subscriptions. %s is the user nickname. @@ -6298,18 +6401,17 @@ msgstr "" #. TRANS: as an anonymous user. %s is the user nickname. #, php-format msgid "%s is not listening to anyone." -msgstr "" +msgstr "Si %s ay hindi nakikinig sa kaninuman." #. TRANS: Atom feed title. %s is a profile nickname. #, php-format msgid "Subscription feed for %s (Atom)" -msgstr "" +msgstr "Pasubo ng pagpapasipi para sa %s" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" -msgstr "Biglaang Mensahe" +msgstr "IM" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. msgid "SMS" @@ -6345,38 +6447,42 @@ msgstr "Pasubong pabatid para sa tatak na %s (Atom)" msgid "You cannot tag this user." msgstr "Hindi mo maaaring tatakan ang tagagamit na ito." -#. TRANS: Title for people tag form when not on a profile page. -msgid "Tag a profile" +#. TRANS: Title for list form when not on a profile page. +#, fuzzy +msgid "List a profile" msgstr "Tatakan ang isang balangkas" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Tatakan si %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Mga talaan" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. msgctxt "TITLE" msgid "Error" msgstr "Kamalian" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Balangkas ng tagagamit" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Tatakan ang tagagamit" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Mga talaan" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. +#, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Mga tatak" +msgid "Lists" +msgstr "Mga talaan" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. +#, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Mga tatak para sa tagagamit na ito (mga titik, mga bilang, -, ., at _), " @@ -6387,12 +6493,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Mga tatak" -#. TRANS: Success message if people tags are saved. -msgid "Tags saved." +#. TRANS: Success message if lists are saved. +#, fuzzy +msgid "Lists saved." msgstr "Nasagip ang mga tatak." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "" "Gamitin ang pormularyong ito upang magdagdag ng mga tatak sa mga tagasipi mo " "o mga pagpapasipi." @@ -6417,10 +6525,10 @@ msgstr "Hindi pinatatahimik ang tagagamit." msgid "Unsubscribed" msgstr "Hindi na nagpapasipi" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. -#, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. +#, fuzzy, php-format +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Hindi na nagpapasipi si %1$s ng mga tatak ng mga tao na %2$s ni %3$s" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -6432,6 +6540,8 @@ msgid "" "Listenee stream license \"%1$s\" is not compatible with site license \"%2$s" "\"." msgstr "" +"Hindi akma ang lisensiya ng agos na \"%1$s\" ng pabatid sa lisensiyang \"%2$s" +"\" ng sityo." #. TRANS: Title of URL settings tab in profile settings. msgid "URL settings" @@ -6470,6 +6580,8 @@ msgstr "URL na mas mahaba kaysa sa" #. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +"Ang mga URL na mas mahaba kaysa rito ay paiikliin, ang 0 ay nangangahulugang " +"palaging papaikliin." #. TRANS: Field label in URL settings in profile. msgid "Text longer than" @@ -6479,22 +6591,27 @@ msgstr "Tekstong mas mahaba kaysa sa" msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" +"Ang mga URL sa loob ng mga pabatid na mas mahaba kaysa rito ay papaikliin, " +"ang 0 ay palaging papaikliin." #. TRANS: Form validation error for form "Other settings" in user profile. msgid "URL shortening service is too long (maximum 50 characters)." msgstr "" +"Ang palingkuran ng pagpapaikli ng URL ay napakahaba (pinakamataas na ang 50 " +"mga panitik)." #. TRANS: Client exception thrown when the maximum URL settings value is invalid in profile URL settings. msgid "Invalid number for maximum URL length." -msgstr "" +msgstr "Hindi katanggap-tanggap na bilang para sa pinakamataas na haba ng URL." #. TRANS: Client exception thrown when the maximum notice length settings value is invalid in profile URL settings. msgid "Invalid number for maximum notice length." msgstr "" +"Hindi katanggap-tanggap na bilang para sa pinakamataas na haba ng pabatid." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." -msgstr "" +msgstr "Kamalian sa pagsagit ng mga nais ng tagagamit sa pagpapaikli ng URL." #. TRANS: User admin panel title. msgctxt "TITLE" @@ -6503,21 +6620,25 @@ msgstr "Tagagamit" #. TRANS: Instruction for user admin panel. msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Mga katakdaan ng tagagamit para sa sityong ito ng StatusNet" #. TRANS: Form validation error in user admin panel when a non-numeric character limit was set. msgid "Invalid bio limit. Must be numeric." -msgstr "" +msgstr "Hindi katanggap-tanggap na hangganan ng talambuhay. Dapat na bilang." #. TRANS: Form validation error in user admin panel when welcome text is too long. msgid "Invalid welcome text. Maximum length is 255 characters." msgstr "" +"Hindi katanggap-tanggap na teksto ng maligayang pagdating. Ang pinakamataas " +"na haba ay 255 mga panitik." #. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new #. TRANS: users in user admin panel. %1$s is the invalid nickname. #, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "" +"Hindi katanggap-tanggap na likas na nakatakdang pagpapasipi: si \"%1$s\" ay " +"hindi isang tagagamit." #. TRANS: Fieldset legend in user administration panel. msgctxt "LEGEND" @@ -6531,6 +6652,7 @@ msgstr "Hangganan ng Talambuhay" #. TRANS: Tooltip in user admin panel for setting the character limit for the bio field. msgid "Maximum length of a profile bio in characters." msgstr "" +"Pinakamataas na haba ng isang tambuhay ng balangkas na nasa mga panitik." #. TRANS: Form legend in user admin panel. msgid "New users" @@ -6552,7 +6674,7 @@ msgstr "Likas na katakdaan ng pagpapasipi" #. TRANS: Tooltip in user admin panel for setting default subscription for new users. msgid "Automatically subscribe new users to this user." -msgstr "" +msgstr "Kusang pasipiin ang bagong mga tagagamit sa tagagamit na ito." #. TRANS: Form legend in user admin panel. msgid "Invitations" @@ -6565,6 +6687,7 @@ msgstr "Paganahin ang mga paanyaya" #. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail. msgid "Whether to allow users to invite new users." msgstr "" +"Kung papahintulutan ba mga tagagamit na mag-anyaya ng bagong mga tagagamit." #. TRANS: Title for button to save user settings in user admin panel. msgid "Save user settings." @@ -6580,6 +6703,9 @@ msgid "" "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " "click \"Reject\"." msgstr "" +"Pakisuri ang mga detalyeng ito upang matiyak na nais mong magpasipi ng mga " +"pabatid ng tagagamit na ito. Kung hindi ka humiling na magpasipi ng mga " +"pabatid mula kaninuman, pindutin ang \"Tanggihan\"." #. TRANS: Button text on Authorise Subscription page. #. TRANS: Submit button text to accept a group membership request on approve group form. @@ -6640,43 +6766,43 @@ msgstr "" #. TRANS: %s is a listener URI. #, php-format msgid "Listener URI \"%s\" not found here." -msgstr "" +msgstr "URI na \"%s\" ng tagapakinig hindi natagpuan dito." #. TRANS: Exception thrown when listenee URI is too long for an authorisation request. #. TRANS: %s is a listenee URI. #, php-format msgid "Listenee URI \"%s\" is too long." -msgstr "" +msgstr "URI na \"%s\" ng tagapakinig ay masyadong mahaba." #. TRANS: Exception thrown when listenee URI is a local user for an authorisation request. #. TRANS: %s is a listenee URI. #, php-format msgid "Listenee URI \"%s\" is a local user." -msgstr "" +msgstr "URI na \"%s\" ng tagapakinig ay isang katutubong tagagamit." #. TRANS: Exception thrown when profile URL is a local user for an authorisation request. #. TRANS: %s is a profile URL. #, php-format msgid "Profile URL \"%s\" is for a local user." -msgstr "" +msgstr "Ang URL na \"%s\" ng balangkas ay para sa isang katutubong tagagamit." #. TRANS: Exception thrown when avatar URL is invalid for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format msgid "Avatar URL \"%s\" is not valid." -msgstr "" +msgstr "Hindi katanggap-tanggap ang URL na \"%s\" ng huwaran." #. TRANS: Exception thrown when avatar URL could not be read for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format msgid "Cannot read avatar URL \"%s\"." -msgstr "" +msgstr "Hindi mabasa ang URL na \"%s\" ng huwaran." #. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request. #. TRANS: %s is an avatar URL. #, php-format msgid "Wrong image type for avatar URL \"%s\"." -msgstr "" +msgstr "Maling uri ng larawan para sa URL na \"%s\" ng huwaran." #. TRANS: Title for profile design page. #. TRANS: Page title for profile design page. @@ -6689,6 +6815,8 @@ msgid "" "Customize the way your profile looks with a background image and a colour " "palette of your choice." msgstr "" +"Ipasadya ang paraan ng kaanyuan ng balangkas na may isang larawang " +"panlikuran at isang paleta ng kulay na napili mo." #. TRANS: Succes message on Profile design page when finding an easter egg. msgid "Enjoy your hotdog!" @@ -6773,6 +6901,10 @@ msgid "" "Software Foundation, either version 3 of the License, or (at your option) " "any later version. " msgstr "" +"Isang malayang sopwer ang StatusNet: maaari mo itong ipamahaging muli at/o " +"baguhin sa ilalim ng mga patakaran ng Lisensyang Panlahatang-Madla ng Affero " +"ng GNU ayon sa pagkakalathala ng Pundasyon ng Malayang Sopwer, maaaring ika-" +"3 bersyon ng Lisensiya, o (ayon sa pagpili mo) anumang bersyon sa paglaon. " #. TRANS: Content part of StatusNet version page. msgid "" @@ -6781,6 +6913,11 @@ msgid "" "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " "for more details. " msgstr "" +"Ang palatuntunan ay ipinamamahagi na inaaasahang magiging magagamit ito, " +"ngunit WALANG ANUMANG PANGAKO NG KATUPARAN; na wala ring pahiwatig na " +"pangako ng katuparan ng KAKAYAHANG MAIKALAKAL o KAANGKUPAN PAR SA ISANG " +"TIYAK NA LAYUNIN. Tingnan ang Pangkalahatang Pangmadlang Lisensiya ng Affero " +"ng GNU para sa marami pang mga detalye. " #. TRANS: Content part of StatusNet version page. #. TRANS: %s is a link to the AGPL license with link description "http://www.gnu.org/licenses/agpl.html". @@ -6847,7 +6984,13 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr[0] "" +"Walang talaksan na maaaring maging mas malaki pa kaysa %1$d byte at ang " +"talaksang nais mong ipadala ay %2$d mga byte. Subukang magkarga ng isang mas " +"maliit na bersyon." msgstr[1] "" +"Walang talaksan na maaaring maging mas malaki pa kaysa %1$d mga byte at ang " +"talaksang nais mong ipadala ay %2$d mga byte. Subukang magkarga ng isang mas " +"maliit na bersyon." #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. @@ -6855,7 +6998,11 @@ msgstr[1] "" msgid "A file this large would exceed your user quota of %d byte." msgid_plural "A file this large would exceed your user quota of %d bytes." msgstr[0] "" +"Ang isang ganito kalaking talaksan ay lalampas sa iyong takdang dami ng " +"tagagamit na %d byte." msgstr[1] "" +"Ang isang ganito kalaking talaksan ay lalampas sa iyong takdang dami ng " +"tagagamit na %d mga byte." #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes and is used for plural. @@ -6863,7 +7010,11 @@ msgstr[1] "" msgid "A file this large would exceed your monthly quota of %d byte." msgid_plural "A file this large would exceed your monthly quota of %d bytes." msgstr[0] "" +"Ang isang ganito kalaking talaksan ay lalampas sa iyong buwanang takdang " +"dami na %d byte." msgstr[1] "" +"Ang isang ganito kalaking talaksan ay lalampas sa iyong buwanang takdang " +"dami na %d mga byte." #. TRANS: Client exception thrown if a file upload does not have a valid name. msgid "Invalid filename." @@ -7073,20 +7224,28 @@ msgid "" "You already have created %d or more tags which is the maximum allowed number " "of tags. Try using or deleting some existing tags." msgstr "" +"Nakalikha ka na ng %d o mahigit pang mga tatak na siyang pinakamataas na " +"pinahihintulutang bilang ng mga tatak. Subukang gamitin o burahin ang ilan " +"sa umiiral na mga tatak.}}" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. -#, php-format +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. +#, fuzzy, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" +"Mayroon ka nang %1$d o mahigit pang mga tao na tinatakan ng %2$s, na siyang " +"pinakamataas na pinahihintulutang bilang. Subukan muna na huwag nang tatakan " +"ang iba na may kahalintulad na tatak." -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. -msgid "Adding people tag subscription failed." +#. TRANS: Exception thrown when inserting a list subscription in the database fails. +#, fuzzy +msgid "Adding list subscription failed." msgstr "Nabigo ang pagpapasipi ng tatak ng mga tao." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. -msgid "Removing people tag subscription failed." +#. TRANS: Exception thrown when deleting a list subscription from the database fails. +#, fuzzy +msgid "Removing list subscription failed." msgstr "Nabigo ang pagtatanggal ng pagpapasipi ng tatak ng mga tao." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7276,11 +7435,13 @@ msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" +"Ang **%%site.name%%** ay isang palingkuran ng maliitang pagboblog na " +"ipinararating sa iyo ng [%%site.broughtby%%](%%site.broughtbyurl%%)." #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "" +msgstr "Ang **%%site.name%%** ay isang palingkurang maliitang pagboblog." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #. TRANS: Make sure there is no whitespace between "]" and "(". @@ -7292,6 +7453,10 @@ msgid "" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" +"Pinatatakbo nito ang sopwer ng maliitang pagboblog na [StatusNet](http://" +"status.net/), bersyong %s, na makukuha sa ilalim ng [Pangkalahatang " +"Pangmadlang Lisensiya ng Affero ng GNU](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html)." #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. @@ -7334,6 +7499,8 @@ msgstr "Bago ang" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. msgid "Expecting a root feed element but got a whole XML document." msgstr "" +"Inaasahan ang isang ugat na sangkap ng pasubo subalit nakakuha ng isang " +"buong kasulatang XML." #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #, php-format @@ -7347,7 +7514,7 @@ msgstr "" #. TRANS: Client exception thrown when trying to force a remote user to subscribe. msgid "Cannot force remote user to subscribe." -msgstr "" +msgstr "Hindi mapipilit na magpasipi ang malayong tagagamit." #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. msgid "Unknown profile." @@ -7376,12 +7543,14 @@ msgstr "" #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. msgid "Not overwriting author info for non-trusted user." msgstr "" +"Hindi papatungan ng sulat ang kabatiran sa may-akda para sa hindi " +"pinagkakatiwalaang tagagamit." #. TRANS: Client exception thrown when trying to import a notice without content. #. TRANS: %s is the notice URI. #, php-format msgid "No content for notice %s." -msgstr "" +msgstr "Walang nilalaman para sa pabatid na %s." #. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. #, php-format @@ -7401,42 +7570,42 @@ msgstr "%1$s %2$s %3$s" #. TRANS: Client exception thrown when there is no source attribute. msgid "Can't handle remote content yet." -msgstr "" +msgstr "Hindi pa mapanghahawakan ang malayong nilalaman." #. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet. msgid "Can't handle embedded XML content yet." -msgstr "" +msgstr "Hindi pa mapapanghawakan ang naibaon na nilalamang XML." #. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet. msgid "Can't handle embedded Base64 content yet." -msgstr "" +msgstr "Hindi pa mapapanghawakan ang naibaon na nilalamang Base64." #. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights. msgid "You cannot make changes to this site." -msgstr "" +msgstr "Hindi ka makagagawa ng mga pagbabago sa sityong ito." #. TRANS: Client error message throw when a certain panel's settings cannot be changed. msgid "Changes to that panel are not allowed." -msgstr "" +msgstr "Hindi pinapayagan ang mga pagbabago sa ganyang kahong-pantaban." #. TRANS: Client error message. msgid "showForm() not implemented." -msgstr "" +msgstr "Hindi ipinatutupad ang ipakita ang Pormularyo()." #. TRANS: Client error message msgid "saveSettings() not implemented." -msgstr "" +msgstr "Hindi ipinatutupad ang sagipin ang mga Katakdaan()." #. TRANS: Client error message thrown if design settings could not be deleted in #. TRANS: the admin panel Design. msgid "Unable to delete design setting." -msgstr "" +msgstr "Hindi nagawang burahin ang mga pagtatakda mo ng disenyo." #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" -msgstr "" +msgstr "Tahanan" #. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in default local navigation panel. @@ -7444,90 +7613,90 @@ msgstr "" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Home" -msgstr "" +msgstr "Tahanan" #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" -msgstr "" +msgstr "Tagapangasiwa" #. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" -msgstr "" +msgstr "Payak na pagkakaayos ng sityo" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site" -msgstr "" +msgstr "Sityo" #. TRANS: Menu item title in administrator navigation panel. msgid "Design configuration" -msgstr "" +msgstr "Pagkakaayos ng disenyo" #. TRANS: Menu item in administrator navigation panel. #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Design" -msgstr "" +msgstr "Disenyo" #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" -msgstr "" +msgstr "Pagkakaayos ng tagagamit" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "User" -msgstr "" +msgstr "Tagagamit" #. TRANS: Menu item title in administrator navigation panel. msgid "Access configuration" -msgstr "" +msgstr "Pagkakaayos ng pagpunta" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Access" -msgstr "" +msgstr "Pagpunta" #. TRANS: Menu item title in administrator navigation panel. msgid "Paths configuration" -msgstr "" +msgstr "Pagkakaayos ng mga landas" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Paths" -msgstr "" +msgstr "Mga landas" #. TRANS: Menu item title in administrator navigation panel. msgid "Sessions configuration" -msgstr "" +msgstr "Pagkakaayos ng mga laang panahon" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Sessions" -msgstr "" +msgstr "Mga laang panahon" #. TRANS: Menu item title in administrator navigation panel. msgid "Edit site notice" -msgstr "" +msgstr "Baguhin ang pabatid ng sityo" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Site notice" -msgstr "" +msgstr "Pabatid ng sityo" #. TRANS: Menu item title in administrator navigation panel. msgid "Snapshots configuration" -msgstr "" +msgstr "Pagkakaayos ng mga kuha ng kamera" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" msgid "Snapshots" -msgstr "" +msgstr "Mga kuha ng kamera" #. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" -msgstr "" +msgstr "Itakda ang lisensiya ng sityo" #. TRANS: Menu item in administrator navigation panel. msgctxt "MENU" @@ -7546,6 +7715,8 @@ msgstr "Mga pampasak" #. TRANS: Client error 401. msgid "API resource requires read-write access, but you only have read access." msgstr "" +"Ang pinagkukunan ng API ay nangangailangan ng pagpuntang nakakabasa at " +"nakasusulat, subalit mayroon ka lamang ng pagbasa." #. TRANS: OAuth exception thrown when no application is found for a given consumer key. msgid "No application for that consumer key." @@ -7580,26 +7751,32 @@ msgstr "Hindi makalikha ng hindi nagpapakilalang aplikasyon ng OAuth." msgid "" "Could not find a profile and application associated with the request token." msgstr "" +"Hindi matagpuan ang isang balangkas at aplikasyon na may kaugnayan sa " +"kahalip ng kahilingan." #. TRANS: Exception thrown when no access token can be issued. msgid "Could not issue access token." -msgstr "" +msgstr "Hindi maibigay ang kahalip ng pagpunta." #. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." msgstr "" +"Kamalian ng kalipunan ng dato sa pagsisingit ng tagagamit ng aplikasyong " +"OAuth." #. TRANS: Exception thrown when a database error occurs. msgid "Database error updating OAuth application user." msgstr "" +"Kamalian ng kalipunan ng dato sa pagsasapanahon ng tagagamit ng aplikasyong " +"OAuth." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. msgid "Tried to revoke unknown token." -msgstr "" +msgstr "Sinubukang bawiin ang hindi nalalamang kahalip." #. TRANS: Exception thrown when an attempt is made to remove a revoked token. msgid "Failed to delete revoked token." -msgstr "" +msgstr "Nabigo sa pagbura ng binawing kahalip." #. TRANS: Form input field label for application icon. msgid "Icon" @@ -7618,8 +7795,8 @@ msgstr "Pangalan" #, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ilarawan ang aplikasyon mo na may %d panitik" +msgstr[1] "Ilarawan ang aplikasyon mo na may %d mga panitik" #. TRANS: Form input field instructions. msgid "Describe your application" @@ -7634,7 +7811,7 @@ msgstr "Paglalarawan" #. TRANS: Form input field instructions. msgid "URL of the homepage of this application" -msgstr "" +msgstr "URL ng bahay-pahina ng aplikasyong ito" #. TRANS: Form input field label. msgid "Source URL" @@ -7642,7 +7819,7 @@ msgstr "Pinagmulang URL" #. TRANS: Form input field instructions. msgid "Organization responsible for this application" -msgstr "" +msgstr "Samahang may pananagutan para sa aplikasyong ito" #. TRANS: Form input field label. msgid "Organization" @@ -7654,7 +7831,7 @@ msgstr "URL para sa bahay-pahina ng samahan" #. TRANS: Form input field instructions. msgid "URL to redirect to after authentication" -msgstr "" +msgstr "URL na papupuntahin sa iba pagkaraan ng pagpapatunay" #. TRANS: Radio button label for application type msgid "Browser" @@ -7679,24 +7856,26 @@ msgstr "Makapagbabasa at makapagsusulat" #. TRANS: Form guide. msgid "Default access for this application: read-only, or read-write" msgstr "" +"Likas na katakdaan ng pagpunta para sa aplikasyong ito: makakabasa lamang, " +"makakabasa at makakasulat" #. TRANS: Submit button title. msgid "Cancel" msgstr "Huwag ituloy" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" -msgstr "" +msgstr "Sagipin" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" -msgstr "" +msgstr "Hindi nalalamang aplikasyon" #. TRANS: Message has a leading space and a trailing space. Used in application list. #. TRANS: Before this message the application name is put, behind it the organisation that manages it. msgid " by " -msgstr "" +msgstr "ng " #. TRANS: Application access type msgid "read-write" @@ -7709,13 +7888,13 @@ msgstr "mababasa lamang" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "Pinayagan noong %1$s - pagpuntang \"%2$s\"." #. TRANS: Access token in the application list. #. TRANS: %s are the first 7 characters of the access token. #, php-format msgid "Access token starting with: %s" -msgstr "" +msgstr "Kahalip na pangpunta na nagsisimula sa: %s" #. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" @@ -7725,107 +7904,109 @@ msgstr "Bawiin" #. TRANS: Atom feed exception thrown when an author element does not contain a name element. msgid "Author element must contain a name element." msgstr "" +"Ang sangkap ng may-akda ay dapat na maglaman ng isang sangkap ng pangalan." #. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed. msgid "Do not use this method!" -msgstr "" +msgstr "Huwag gamitin ang pamamaraang ito!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Guhit ng panahon para sa mga taong natatakan ni %2$s ng %1$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" -msgstr "Mga pagsasapanahon mula sa %1$s, %2$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" +msgstr "" +"Mga pagsasapanahon mula sa tatak ng mga tao na %2$s ni %1$s na nasa %3$s!" #. TRANS: Title. msgid "Notices where this attachment appears" -msgstr "" +msgstr "Mga pabatid kung saan lumilitaw ang kalakip na ito" #. TRANS: Title. msgid "Tags for this attachment" -msgstr "" +msgstr "Mga tatak para sa kalakip na ito" #. TRANS: Exception thrown when a password change fails. msgid "Password changing failed." -msgstr "" +msgstr "Nabigo ang pagpapalit ng hudyat." #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. msgid "Password changing is not allowed." -msgstr "" +msgstr "Hindi pinapahintulutan ang pagpapalit ng hudyat." #. TRANS: Title for the form to block a user. msgid "Block" -msgstr "" +msgstr "Hadlangan" #. TRANS: Description of the form to block a user. msgid "Block this user" -msgstr "" +msgstr "Hadlangan ang tagagamit na ito" #. TRANS: Submit button text on form to cancel group join request. msgctxt "BUTTON" msgid "Cancel join request" -msgstr "" +msgstr "Huwag ituloy ang hiling ng pagsali" #. TRANS: Button text for form action to cancel a subscription request. msgctxt "BUTTON" msgid "Cancel subscription request" -msgstr "" +msgstr "Huwag ituloy ang hiling ng pagpapasipi" #. TRANS: Title for command results. msgid "Command results" -msgstr "" +msgstr "Mga kinalabasan ng utos" #. TRANS: Title for command results. msgid "AJAX error" -msgstr "" +msgstr "Kamalian ng AJAX" #. TRANS: E-mail subject when a command has completed. #. TRANS: E-mail subject for reply to an e-mail command. msgid "Command complete" -msgstr "" +msgstr "Buo na ang utos" #. TRANS: E-mail subject when a command has failed. msgid "Command failed" -msgstr "" +msgstr "Nabigo ang utos" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. msgid "Notice with that id does not exist." -msgstr "" +msgstr "Hindi umiiral ang pabatid na may ganyang 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. msgid "User has no last notice." -msgstr "" +msgstr "Ang tagagamit ay walang huling pabatid." #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. #, php-format msgid "Could not find a user with nickname %s." -msgstr "" +msgstr "Walang matagpuang isang tagagamit na may palayaw na %s." #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #, php-format msgid "Could not find a local user with nickname %s." -msgstr "" +msgstr "Hindi matagpuan ang isang katutubong tagagamit na may palayaw na %s." #. TRANS: Error text shown when an unimplemented command is given. msgid "Sorry, this command is not yet implemented." -msgstr "" +msgstr "Paumanhin, hindi pa ipinatutupad ang utos na ito." #. TRANS: Command exception text shown when a user tries to nudge themselves. msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "Hindi makatuwiran na dunggulin mo ang sarili mo!" #. TRANS: Message given having nudged another user. #. TRANS: %s is the nickname of the user that was nudged. #, php-format msgid "Nudge sent to %s." -msgstr "" +msgstr "Ipinadala ang pagdunggol kay %s." #. TRANS: User statistics text. #. TRANS: %1$s is the number of other user the user is subscribed to. @@ -7837,6 +8018,9 @@ msgid "" "Subscribers: %2$s\n" "Notices: %3$s" msgstr "" +"Pagpapasipi: %1$s\n" +"Nagpapasipi: %2$s\n" +"Mga pabatid: %3$s" #. TRANS: Error message text shown when a favorite could not be set because it has already been favorited. msgid "Could not create favorite: Already favorited." @@ -7856,39 +8040,39 @@ msgstr "Sumali si %1$s sa pangkat na %2$s." #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #, php-format msgid "%1$s left group %2$s." -msgstr "" +msgstr "Nilisan ni %1$s ang pangkat na %2$s." #. TRANS: Error displayed if tagging a user fails. #. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error tagging %1$s: %2$s" -msgstr "" +msgstr "Kamalian sa pagtatatak kay %1$s: %2$s" #. TRANS: Succes message displayed if tagging a user succeeds. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. #. TRANS: Plural is decided based on the number of tags added (not part of message). -#, fuzzy, php-format +#, php-format msgid "%1$s was tagged %2$s" msgid_plural "%1$s was tagged %2$s" -msgstr[0] "%1$s - %2$s" -msgstr[1] "%1$s - %2$s" +msgstr[0] "Si %1$s ay natatakan ng %2$s" +msgstr[1] "Si %1$s ay natatakan ng %2$s" #. TRANS: Separator for list of tags. #. TRANS: Separator in list of user names like "You, Bob, Mary". msgid ", " -msgstr "" +msgstr ", " #. TRANS: Error displayed if a given tag is invalid. #. TRANS: %s is the invalid tag. -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"" -msgstr "Hindi katanggap-tanggap na tatak: \"%s\"." +msgstr "Hindi katanggap-tanggap na tatak: \"%s\"" #. TRANS: Error displayed if untagging a user fails. #. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error untagging %1$s: %2$s" -msgstr "" +msgstr "Kamalian sa hindi pagtatatak kay %1$s: %2$s" #. TRANS: Succes message displayed if untagging a user succeeds. #. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. @@ -7897,14 +8081,16 @@ msgstr "" msgid "The following tag was removed from user %1$s: %2$s." msgid_plural "The following tags were removed from user %1$s: %2$s." msgstr[0] "" +"Ang sumusunod na tatak ay tinanggal mula sa tagagamit na %1$s: %2$s." msgstr[1] "" +"Ang sumusunod na mga tatak ay tinanggal mula sa tagagamit na %1$s: %2$s. " #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. #, php-format msgctxt "WHOIS" msgid "%1$s (%2$s)" -msgstr "" +msgstr "%1$s (%2$s)" #. TRANS: Whois output. %s is the full name of the queried user. #, php-format @@ -8037,6 +8223,8 @@ msgstr "Hindi gumagana ang utos ng paglagda." #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." msgstr "" +"Ang kawing na ito ay magagamit lamang ng isang ulit at may bisa sa loob " +"lamang ng 2 mga minuto: %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. @@ -8059,7 +8247,7 @@ msgstr[1] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. msgid "No one is subscribed to you." -msgstr "" +msgstr "Walang nagpapasipi sa iyo." #. 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 @@ -8072,15 +8260,15 @@ msgstr[1] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. msgid "You are not a member of any groups." -msgstr "" +msgstr "Hindi ka isang kasapi ng anumang mga pangkat." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a #. TRANS: hard coded space and a comma separated list of subscribed groups. msgid "You are a member of this group:" msgid_plural "You are a member of these groups:" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Isa kang kasapi ng pangkat na ito:" +msgstr[1] "Isa kang kasapi ng mga pangkat na ito:" #. TRANS: Header line of help text for commands. msgctxt "COMMANDHELP" @@ -8110,37 +8298,37 @@ msgstr "tumanggap ng sipi mula sa tagagamit" #. TRANS: Help message for IM/SMS command "groups". msgctxt "COMMANDHELP" msgid "lists the groups you have joined" -msgstr "" +msgstr "nagtatala ng mga pangkat na sinalihan mo" #. TRANS: Help message for IM/SMS command "tag". msgctxt "COMMANDHELP" msgid "tag a user" -msgstr "" +msgstr "tatakan ang isang tagagamit" #. TRANS: Help message for IM/SMS command "untag". msgctxt "COMMANDHELP" msgid "untag a user" -msgstr "" +msgstr "huwag tatakan ang isang tagagamit" #. TRANS: Help message for IM/SMS command "subscriptions". msgctxt "COMMANDHELP" msgid "list the people you follow" -msgstr "" +msgstr "itala ang mga taong sinusundan mo" #. TRANS: Help message for IM/SMS command "subscribers". msgctxt "COMMANDHELP" msgid "list the people that follow you" -msgstr "" +msgstr "itala ang mga taong sumusunod sa iyo" #. TRANS: Help message for IM/SMS command "leave ". msgctxt "COMMANDHELP" msgid "unsubscribe from user" -msgstr "" +msgstr "huwag nang magpasipi mula sa tagagamit" #. TRANS: Help message for IM/SMS command "d ". msgctxt "COMMANDHELP" msgid "direct message to user" -msgstr "" +msgstr "tuwirang mensahe papunta sa tagagamit" #. TRANS: Help message for IM/SMS command "get ". msgctxt "COMMANDHELP" @@ -8251,31 +8439,33 @@ msgstr "paalalahanan ang isang tagagamit na magsapanahon." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. msgid "No configuration file found." -msgstr "" +msgstr "Walang natagpuang talaksan ng pagkakaayos." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. #. TRANS: Is followed by a list of directories (separated by HTML breaks). msgid "I looked for configuration files in the following places:" msgstr "" +"Tumingin ako ng mga talaksan ng pagkakaayos sa loob ng sumusunod na mga " +"lugar:" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. msgid "You may wish to run the installer to fix this." -msgstr "" +msgstr "Maaaring naisin mong patakbuhin ang tagapagtalaga upang ayusin ito." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. #. TRANS: The text is link text that leads to the installer page. msgid "Go to the installer." -msgstr "" +msgstr "Pumunta sa tagapagtalaga." #. TRANS: Page title for when a database error occurs. msgid "Database error" -msgstr "" +msgstr "Kamalian sa kalipunan ng dato" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" msgid "Public" -msgstr "" +msgstr "Pangmadla" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. @@ -8286,145 +8476,146 @@ msgstr "Mga pangkat" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Mga hangganan" +msgstr "Mga talaan" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. msgid "Delete" -msgstr "" +msgstr "Burahin" #. TRANS: Description of form for deleting a user. msgid "Delete this user" -msgstr "" +msgstr "Burahin ang tagagamit na ito" #. TRANS: Form legend of form for changing the page design. msgid "Change design" -msgstr "" +msgstr "Baguhin ang disenyo" #. TRANS: Fieldset legend on profile design page to change profile page colours. msgid "Change colours" -msgstr "" +msgstr "Baguhin ang mga kulay" #. TRANS: Button text on profile design page to immediately reset all colour settings to default. msgid "Use defaults" -msgstr "" +msgstr "Gamitin ang likas na mga katakdaan" #. TRANS: Label in form on profile design page. #. TRANS: Field contains file name on user's computer that could be that user's custom profile background image. msgid "Upload file" -msgstr "" +msgstr "Ikarga ang talaksan" #. TRANS: Instructions for form on profile design page. msgid "" "You can upload your personal background image. The maximum file size is 2MB." msgstr "" +"Maaari mong ikargang papaitaas ang pansarili mong larawang panlikuran. Ang " +"pinakamataas na sukat ng talaksan ay 2MB." #. TRANS: Radio button on profile design page that will enable use of the uploaded profile image. msgctxt "RADIO" msgid "On" -msgstr "" +msgstr "Buhay" #. TRANS: Radio button on profile design page that will disable use of the uploaded profile image. msgctxt "RADIO" msgid "Off" -msgstr "" +msgstr "Patay" #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". msgid "Design defaults restored." -msgstr "" +msgstr "Naipanumbalik ang likas na mga katakdaan ng disenyo." #. TRANS: Exception. %s is an ID. #, php-format msgid "Unable to find services for %s." -msgstr "" +msgstr "Hindi matagpuan ang mga palingkuran para sa %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. #. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" -msgstr "" +msgstr "Huwag kagiliwan ang pabatid na ito" #. TRANS: Button text for removing the favourite status for a favourite notice. msgctxt "BUTTON" msgid "Disfavor favorite" -msgstr "" +msgstr "Huwag kagiliwan ang kinagigiliwan" #. TRANS: Form legend for adding the favourite status to a notice. #. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" -msgstr "" +msgstr "Kagiliwan ang pabatid na ito" #. TRANS: Button text for adding the favourite status to a notice. msgctxt "BUTTON" msgid "Favor" -msgstr "" +msgstr "Kagiliwan" #. TRANS: Feed type name. msgid "RSS 1.0" -msgstr "" +msgstr "RSS 1.0" #. TRANS: Feed type name. msgid "RSS 2.0" -msgstr "" +msgstr "RSS 2.0" #. TRANS: Feed type name. msgid "Atom" -msgstr "" +msgstr "Atom" #. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" -msgstr "" +msgstr "FOAF" #. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." -msgstr "" +msgstr "Walang may-akda sa loob ng pasubo." #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. msgid "Cannot import without a user." -msgstr "" +msgstr "Hindi maaangkat na walang isang tagagamit." #. TRANS: Header for feed links (h2). msgid "Feeds" -msgstr "" +msgstr "Mga pasubo" #. TRANS: List element on gallery action page to show all tags. msgctxt "TAGS" msgid "All" -msgstr "" +msgstr "Lahat" #. TRANS: Dropdown field label on gallery action page for a list containing tags. msgid "Tag" -msgstr "" +msgstr "Tatak" #. TRANS: Dropdown field title on gallery action page for a list containing tags. msgid "Choose a tag to narrow list." -msgstr "" +msgstr "Pumili ng isang tatak upang mapaunti ang talaan." #. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "Bigyan ang tagagamit na ito ng gampaning \"%s\"" #. TRANS: Button text for the form that will block a user from a group. msgctxt "BUTTON" msgid "Block" -msgstr "" +msgstr "Hadlangan" #. TRANS: Submit button title. msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Hadlangan ang tagagamit na ito" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." -msgstr "" +msgstr "URL ng bahay-pahina o blog ng pangkat o paksa." #. TRANS: Text area title for group description when there is no text limit. msgid "Describe the group or topic." -msgstr "" +msgstr "Ilarawan ang pangkat o paksa." #. TRANS: Text area title for group description. #. TRANS: %d is the number of characters available for the description. @@ -8438,10 +8629,12 @@ msgstr[1] "" msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" +"Kinalalagyan para sa pangkat, kung mayroon, katulad ng \"Lungsod, Estado (o " +"Rehiyon), Bansa\"." #. TRANS: Field label on group edit form. msgid "Aliases" -msgstr "" +msgstr "Mga taguri" #. TRANS: Input field title for group aliases. #. TRANS: %d is the maximum number of group aliases available. @@ -8459,6 +8652,8 @@ msgstr[1] "" msgid "" "New members must be approved by admin and all posts are forced to be private." msgstr "" +"Ang bagong mga kasapi ay dapat na payagan ng tagapangasiwa at lahat ng mga " +"pagpapaskil ay sapilitan ang pagiging pribado." #. TRANS: Indicator in group members list that this user is a group administrator. msgctxt "GROUPADMIN" @@ -8495,8 +8690,8 @@ msgstr "Mga kasapi ng pangkat na %s" msgctxt "MENU" msgid "Pending members (%d)" msgid_plural "Pending members (%d)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Nakabinbing mga kasapi (%d)" +msgstr[1] "Nakabinbing mga kasapi (%d)" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -8554,14 +8749,12 @@ msgid "Group actions" msgstr "Mga galaw ng pangkat" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Tanyag na mga pabatid" +msgstr "Tanyag na mga pangkat" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Lahat ng mga pangkat" +msgstr "Masisiglang mga pangkat" #. TRANS: Title for group tag cloud section. #. TRANS: %s is a group name. @@ -8575,13 +8768,14 @@ msgstr "Ang pahinang ito ay hindi makukuhang nasa uri ng midyang tinanggap mo" #. TRANS: Exception thrown when trying to upload an unsupported image file format. msgid "Unsupported image file format." -msgstr "" +msgstr "Hindi tinatangkilik na anyo ng talaksan ng larawan." #. TRANS: Exception thrown when too large a file is uploaded. #. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB". #, php-format msgid "That file is too big. The maximum file size is %s." msgstr "" +"Napakalaki ng talaksang iyan. Ang pinakamataas na sukat ng talaksan ay %s." #. TRANS: Exception thrown when uploading an image and that action could not be completed. msgid "Partial upload." @@ -8632,6 +8826,12 @@ msgid "" "user is not you, or if you did not request this confirmation, just ignore " "this message." msgstr "" +"Sinabi ng tagagamit na si \"%1$s\" sa %2$s na ang iyong bansag na %3$s ay " +"pag-aari nila. Kung iyan ay totoo, matitiyak mo sa pamamagitan ng pagpindot " +"sa URL na ito: %4$s. (Kung hindi mo ito mapindot, kopyahin at idikit ito sa " +"loob ng halang ng tirahan ng iyong pantingin-tingin). Kung hindi ikaw ang " +"tagagamit na iyan, o hindi mo hiniling ang pagtitiyak na ito, huwag na " +"lamang pansinin ang mensaheng ito." #. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox. #. TRANS: %d is the unknown inbox ID (number). @@ -8648,10 +8848,9 @@ msgid "Transport cannot be null." msgstr "Ang sakayan ay hindi maaaring walang halaga." #. TRANS: Button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "Mag-anyaya ng bagong mga tagagamit" +msgstr "Mag-anyaya ng marami pang mga kasamahan" #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8753,6 +8952,12 @@ msgid "" "----\n" "Change your email address or notification options at %2$s" msgstr "" +"Tapat sa iyo,\n" +"%1$s.\n" +"\n" +"----\n" +"Baguhin ang tirahan mo ng e-liham o mga mapagpipilian ng pagpapabatid doon " +"sa %2$s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. @@ -8773,12 +8978,16 @@ 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 "" +"Kung naniniwala ka na ang akawnt na ito ay ginagamit sa paraang " +"mapagmalabis, maaari mo silang harangin mula sa iyong talaan ng mga " +"tagapagpasipi at iulat bilang basurang liham sa mga tagapangasiwa ng sityo " +"doon sa %s." #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. #, php-format msgid "New email address for posting to %s" -msgstr "" +msgstr "Bagong tirahan ng e-liham na ipapaskil sa %s" #. TRANS: Body of notification mail for new posting email address. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send @@ -8791,6 +9000,11 @@ msgid "" "\n" "More email instructions at %3$s." msgstr "" +"Mayroon kang isang bagong tirahan ng pagpapaskil sa %1$s.\n" +"\n" +"Magpadala ng e-liham sa %2$s upang magpaskil ng bagong mga mensahe.\n" +"\n" +"Marami pang mga panuto sa pamamagitan ng e-liham doon sa %3$s." #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. @@ -8923,12 +9137,16 @@ msgid "" "\n" "\t%s" msgstr "" +"Ang buong talakayan ay maaaring basahin dito:\n" +"\n" +"%s" #. TRANS: E-mail subject for notice notification. #. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname. #, php-format msgid "%1$s (@%2$s) sent a notice to your attention" msgstr "" +"Si %1$s (@%2$s) ay nagpadala ng isang pabatid na kailangan ng pagpansin mo" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, @@ -8955,6 +9173,24 @@ msgid "" "\n" "%7$s" msgstr "" +"Kapapadala pa lamang ni %1$s ng isang pabatid na nauukol para sa iyo (isang " +"'@-tugon') sa %2$s.\n" +"\n" +"Naririto ang pabatid:\n" +"\n" +"%3$s\n" +"\n" +"Mababasa rito na:\n" +"\n" +"%4$s\n" +"\n" +"%5$sDito ka makakatugong pabalik:\n" +"\n" +"%6$s\n" +"\n" +"Narito ang talaan ng lahat ng @-mga tugon para sa iyo:\n" +"\n" +"%7$s" #. TRANS: Subject of group join notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. @@ -8964,13 +9200,13 @@ msgstr "" #. TRANS: %5$s is a link to the addressed user's e-mail settings. #, php-format msgid "%1$s has joined your group %2$s on %3$s." -msgstr "" +msgstr "Si %1$s ay sumali sa iyong pangkat na %2$s na nasa %3$s." #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. #, php-format msgid "%1$s wants to join your group %2$s on %3$s." -msgstr "" +msgstr "Nais sumali ni %1$s sa iyong pangkat na %2$s na nasa %3$s." #. TRANS: Main body of pending group join request notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, @@ -8980,21 +9216,28 @@ msgid "" "%1$s would like to join your group %2$s on %3$s. You may approve or reject " "their group membership at %4$s" msgstr "" +"Nais sumali ni %1$s sa iyong pangkat na %2$s na nasa %3$s . Maaari mong " +"payagan o tanggihan ang kanilang pagiging kasapi ng pangkat doon sa %4$s" #. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user. msgid "Only the user can read their own mailboxes." msgstr "" +"Tanging mga tagagamit lamang ang makakabas ng kanilang sari-sariling mga " +"kahon ng liham." #. TRANS: Message displayed when there are no private messages in the inbox of a user. msgid "" "You have no private messages. You can send private message to engage other " "users in conversation. People can send you messages for your eyes only." msgstr "" +"Wala kang pribadong mga mensahe. Makapagpapadala ka ng pribadong mensahe " +"upang mayaya ang ibang mga tagagamit sa loob ng talakayan. Makapagpapadala " +"sa iyo ang mga tao ng mga mensaheng para sa mga mata mo lamang." #. TRANS: Menu item in mailbox menu. Leads to incoming private messages. msgctxt "MENU" msgid "Inbox" -msgstr "" +msgstr "Kahong-tanggapan" #. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. msgid "Your incoming messages." @@ -9048,15 +9291,17 @@ msgstr "Gawing isang tagapangasiwa ang tagagamit na ito" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." msgstr "" +"Nagkaroon ng isang kamalian sa kalipunan ng dato habang sinasagip ang " +"talaksan mo. Mangyaring subukan uli." #. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. msgid "File exceeds user's quota." -msgstr "" +msgstr "Lumalampas ang talaksan sa takdang dami ng tagagamit." #. TRANS: Client exception thrown when a file upload operation fails because the file could #. TRANS: not be moved from the temporary folder to the permanent file location. msgid "File could not be moved to destination directory." -msgstr "" +msgstr "Hindi malipat ang talaksan papunta sa kapupuntahang direktoryo." #. 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. @@ -9071,12 +9316,16 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"Ang \"%1$s\" ay hindi isang tinatangkilik ng uri ng talaksan sa tagapaghain " +"ito. Subukang gumamit ng ibang anyo ng %2$s." #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #, php-format msgid "\"%s\" is not a supported file type on this server." msgstr "" +"Ang \"%s\" ay isang hindi tinatangkilik na uri ng talaksan sa tagapaghaing " +"ito." #. TRANS: Form legend for direct notice. msgid "Send a direct notice" @@ -9204,11 +9453,11 @@ msgstr "Mga pabatid" #. TRANS: Separator in profile addressees list. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Start of profile addressees list. msgid " ▶ " -msgstr "" +msgstr "▶ " #. TRANS: Used in coordinates as abbreviation of north. msgid "N" @@ -9304,60 +9553,58 @@ msgstr "Hindi maisingit ang bagong pagpapasipi." msgid "No oEmbed API endpoint available." msgstr "Walang makukuhang dulong-katapusan ng API ng oEmbed." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. +#, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Tatak" +msgid "List" +msgstr "Talaan" -#. TRANS: Field title for people tag. -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +#. TRANS: Field title for list. +#, fuzzy +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Baguhin ang tatak (pinapahintulutan ang mga titik, mga bilang, -, ., at _)." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "Ilarawan ang tatak ng mga tao o paksa." +msgstr "Ilarawan ang talaan o paksa." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "Ilarawan ang tatak ng mga tao o paksa." -msgstr[1] "Ilarawan ang tatak ng mga tao o paksa." +msgstr[0] "Ilarawan ang talaan o paksa sa loob ng %d panitik." +msgstr[1] "Ilarawan ang talaan o paksa sa loob ng %d mga panitik." #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "Burahin ang tagagamit na ito." +msgstr "Burahin ang talaang ito." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "Magdagdag o magtanggal ng mga tao" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgctxt "HEADER" msgid "Search" msgstr "Hanapin" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "Mga kawing" +msgstr "Talaan" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "Tatak na %1$s ni %2$s." +msgstr "Talaang %1$s ni %2$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Lisensiya" +msgstr "Naitala na" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. @@ -9367,113 +9614,119 @@ msgstr "Mga nagpapasipi" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "Mga nagpapasipi sa mga tatak na %1$s ni %2$s." +msgstr "Mga nagpapasipi sa mga talaang %1$s ni %2$s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. msgctxt "MENU" msgid "Edit" msgstr "Baguhin" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "Baguhin ang tatak mo na %s." +msgstr "Baguhin ang talaan mong %s." #. TRANS: Link description for link to list of users tagged with a tag. msgid "Tagged" msgstr "Natatakan na" #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "Baguhin ang mga katakdaan ng balangkas." +msgstr "Baguhin ang mga katakdaan ng talaan." #. TRANS: Text for link to edit list settings. msgid "Edit" msgstr "Baguhin" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. msgctxt "MODE" msgid "Private" msgstr "Pribado" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "Mga pagpapasipi" +msgstr "Mga Pagpapasipi sa Talaan" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "Tumatanggap ng sipi mula sa %s." +msgstr "Mga talaang pinagpapasipian ng %s." #. TRANS: Menu item in the group navigation page. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "Mga pagsasapanahon na may \"%s\"" +msgstr "Mga talaang may %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "Mga pagsasapanahon na may \"%s\"" +msgstr "Mga talaang may %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Mga talaan ayon sa %s" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. -#, fuzzy, php-format +#. TRANS: %s is a user nickname. +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "Tatak na %1$s ni %2$s." +msgstr "Mga talaan ng %s." -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "Mga pagtatatak mo" +msgid "Your lists" +msgstr "Tanyag na mga talaan" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. +#, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Baguhin ang mga tatak" +msgid "Edit lists" +msgstr "Baguhin ang talaang %s" + +#. TRANS: Label in self tags widget. +msgctxt "LABEL" +msgid "Tags" +msgstr "Mga tatak" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Tanyag na mga pabatid" +msgstr "Tanyag na mga talaan" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "Natatakan: %1$d Mga nagpapasipi: %2$d" +msgstr "Talaan: %1$d Mga nagpapasipi: %2$d" -#, fuzzy, php-format +#. TRANS: Title for page that displays which lists current user is part of. +#, php-format msgid "Lists with you" -msgstr "Hindi natagpuan ang tala." +msgstr "Mga talaang nasa iyo" -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "Mga pagsasapanahon na may \"%s\"" +msgstr "Mga talaang may %s" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "%s mga pagpapasipi" +msgstr "Itala ang mga pagpapasipi" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. @@ -9565,14 +9818,12 @@ msgid "Search the site." msgstr "Maghanap sa sityo." #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Sundan" +msgstr "Sinusundan si" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Sundan" +msgstr "Mga tagasunod" #. TRANS: Label for user statistics. msgid "User ID" @@ -9596,9 +9847,8 @@ msgid "Groups" msgstr "Mga pangkat" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "Mga hangganan" +msgstr "Mga talaan" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -9682,7 +9932,7 @@ msgstr "" "* Tiyakin na tama ang banghay ng lahat ng mga salita.\n" "* Sumubok ng ibang mga susing-salita.\n" "* Sumubok ng mas pangkalahatang mga susing-salita.\n" -"* Sumubuk ng mas kakaunting mga susing-salita.\n" +"* Sumubok ng mas kakaunting mga susing-salita.\n" #. TRANS: Standard search suggestions shown when a search does not give any results. #, php-format @@ -9904,9 +10154,9 @@ msgstr "Ang mga pangkat kung saan kasapi si %s." #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "List subscriptions by %s." -msgstr "Mga pagpapasipi ng mga tatak ng mga tao ni %s" +msgstr "Itala ang mga pagpapasipi ni %s." #. TRANS: Menu item in local navigation menu. msgctxt "MENU" @@ -9944,10 +10194,12 @@ msgstr "Hindi katanggap-tanggap na pangalan ng tema." #. TRANS: Exception thrown when a compressed theme is uploaded while no support present in PHP configuration. msgid "This server cannot handle theme uploads without ZIP support." msgstr "" +"Ang tagapaghaing ito ay hindi makapanghahawak ng mga pagkakarga ng tema na " +"walang pagtangkilik ng ZIP." #. TRANS: Server exception thrown when uploading a theme fails. msgid "The theme file is missing or the upload failed." -msgstr "" +msgstr "Nawawala ang talaksan ng tema o nabigo ang pagkakarga." #. TRANS: Server exception thrown when saving an uploaded theme after decompressing it fails. #. TRANS: Server exception thrown when an uploaded theme cannot be saved during extraction. @@ -9978,16 +10230,22 @@ msgid "" "Theme contains invalid file or folder name. Stick with ASCII letters, " "digits, underscore, and minus sign." msgstr "" +"Ang tema ay naglalaman ng hindi katanggap-tanggap na pangalan ng talaksan o " +"pantupi. Manatiling may mga titik ng ASCII, mga tambilang, salangguhit, at " +"bantas ng pagbawas." #. TRANS: Server exception thrown when an uploaded theme contains files with unsafe file extensions. msgid "Theme contains unsafe file extension names; may be unsafe." msgstr "" +"Ang tema ay naglalaman ng hindi ligtas na mga pangalan ng dugtong ng " +"talaksan; maaaring hindi ligtas." #. TRANS: Server exception thrown when an uploaded theme contains a file type that is not allowed. #. TRANS: %s is the file type that is not allowed. #, php-format msgid "Theme contains file of type \".%s\", which is not allowed." msgstr "" +"Ang tema ay naglalaman ng talaksan ng uring \".%s\", na hindi pinapayagan." #. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." @@ -9998,8 +10256,8 @@ msgstr "Kamalian sa pagbubukas ng supnayan ng tema." #, php-format msgid "Show reply" msgid_plural "Show all %d replies" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ipakita ang tugon" +msgstr[1] "Ipakita ang lahat ng %d mga tugon" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" @@ -10023,8 +10281,8 @@ msgstr "Kinagiliwan mo ang pabatid na ito." #, php-format msgid "One person has favored this notice." msgid_plural "%d people have favored this notice." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Isang tao ang gumiliw sa paunawang ito." +msgstr[1] "%d mga tao ang gumigiliw sa paunawang ito." #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" @@ -10036,8 +10294,8 @@ msgstr "Inulit mo ang pabatid na ito." #, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Isang tao ang umulit ng paunawang ito." +msgstr[1] "%d mga tao ang umulit ng paunawang ito." #. TRANS: Form legend. #, php-format @@ -10066,16 +10324,16 @@ msgid "Choose a field to search." msgstr "Pumili ng isang hanay na hahanapin." #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. -#, php-format -msgid "Untag %1$s as %2$s" -msgstr "Huwag tatakan si %1$s bilang %2$s" +#. TRANS: %1$s is a nickname, $2$s is a list. +#, fuzzy, php-format +msgid "Remove %1$s from list %2$s" +msgstr "Talaang %1$s ni %2$s." -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. -#, php-format -msgid "Tag %1$s as %2$s" -msgstr "Tatakan si %1$s bilang %2$s" +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. +#, fuzzy, php-format +msgid "Add %1$s to list %2$s" +msgstr "Talaang %1$s ni %2$s." #. TRANS: Title for top posters section. msgid "Top posters" @@ -10134,7 +10392,7 @@ msgid "Unsubscribe from this user" msgstr "Huwag nang magpasipi mula sa tagagamit na ito" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Pahintuin na ang pagtanggap ng sipi" @@ -10143,7 +10401,7 @@ msgstr "Pahintuin na ang pagtanggap ng sipi" #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). #, php-format msgid "User %1$s (%2$d) has no profile record." -msgstr "" +msgstr "Ang tagagamit na si %1$s (%2$d) ay walang rekord ng balangkas." #. TRANS: Authorisation exception thrown when a user a not allowed to login. msgid "Not allowed to log in." @@ -10161,8 +10419,8 @@ msgstr "bandang isang minuto na ang nakalipas" #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "humigit-kumulang isang minuto ang nakalipas" +msgstr[1] "humigit-kumulang %d mga minuto ang nakalipas" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about an hour ago" @@ -10172,8 +10430,8 @@ msgstr "bandang isang oras na ang nakalipas" #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "humigit-kumulang isang oras ang nakalipas" +msgstr[1] "humigit-kumulang %d mga oras ang nakalipas" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about a day ago" @@ -10183,8 +10441,8 @@ msgstr "bandang isang araw na ang nakalilipas" #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "humigit-kumulang isang araw ang nakalipas" +msgstr[1] "humigit-kumulang %d mga araw ang nakalipas" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about a month ago" @@ -10194,8 +10452,8 @@ msgstr "bandang isang buwan na ang nakalilipas" #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "humigit-kumulang isang buwan ang nakalipas" +msgstr[1] "humigit-kumulang %d mga buwan ang nakalipas" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about a year ago" @@ -10206,6 +10464,8 @@ msgstr "bandang isang taon na ang nakalilipas" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex characters." msgstr "" +"Ang %s ay isang hindi katanggap-tanggap na kulay! Gumamit ng 3 o 6 na hex na " +"mga panitik." #. TRANS: Exception. msgid "Invalid XML." @@ -10220,75 +10480,44 @@ msgstr "Hindi katanggap-tanggap na XML, nawawalang ugat ng XRD." msgid "Getting backup from file '%s'." msgstr "Kinukuha ang kopyang pamalit mula sa talaksang '%s'" -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Gamitin ang pormularyong ito upang baguhin ang tatak ng mga tao." +#~ msgid "No such people tag." +#~ msgstr "Walang ganyang tatak ng mga tao." -#~ msgid "Could not update people tag." -#~ msgstr "Hindi maisapanahon ang tatak ng mga tao." +#~ msgid "Public people tag %s" +#~ msgstr "Pangmadlang tatak ng mga tao na%s" -#~ msgid "People tags by you" -#~ msgstr "Mga tatak mo ng mga tao" +#~ msgid "Subscribers of people tagged %1$s by %2$s" +#~ msgstr "Mga nagpapasipi sa mga taong tinatakan ni %2$s ng %1$s" -#~ msgid "People tags by %s" -#~ msgstr "Mga tatak ng mga tao ni %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Ulap ng pangmadlang tatak ng mga tao" -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Mga tatak ng mga tao ni %1$s, pahina %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Ito ang mga pinaka ginagamit na mga tatak ng mga tao sa %s" -#~ msgid "People tags for %s" -#~ msgstr "Mga tatak ng mga tao para sa %s" +#~ msgid "People tag cloud" +#~ msgstr "Ulap ng tatak ng mga tao" -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Mga tatak ng mga tao para sa %1$s, pahina %2$d" +#~ msgid "Tag %s" +#~ msgstr "Tatakan si %s" -#~ msgid "People tagged %s by you" -#~ msgstr "Mga taong tinatakan mo %s" +#~ msgid "Tag user" +#~ msgstr "Tatakan ang tagagamit" -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "" -#~ "Nagkasuliranan sa pagsagip ng kahong-tanggapan ng tatak_ng_balangkas." +#~ msgctxt "LABEL" +#~ msgid "Tag" +#~ msgstr "Tatak" -#~ msgid "Groups with most members" -#~ msgstr "Mga pangkat na may pinakamaraming mga kasapi" +#~ msgctxt "LABEL" +#~ msgid "Tags by you" +#~ msgstr "Mga pagtatatak mo" -#~ msgid "Groups with most posts" -#~ msgstr "Mga pangkat na may pinakamaraming mga pagpapaskil" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Baguhin ang mga tatak" -#~ msgid "Delete this people tag." -#~ msgstr "Burahin ang ganitong tatak ng mga tao." +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "Huwag tatakan si %1$s bilang %2$s" -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Tatak ng mga tao" - -#~ msgctxt "MENU" -#~ msgid "Tagged" -#~ msgstr "Natatakan na" - -#~ msgid "Edit people tag settings." -#~ msgstr "Baguhin ang mga katakdaan ng tatak ng mga tao." - -#~ msgid "People tags with most subscribers" -#~ msgstr "Mga pagtatatak ng mga tao na may pinakaraming nagpapasipi." - -#~ msgid "People tag subscriptions" -#~ msgstr "Mga pagpapasipi ng tatak ng mga tao" - -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Mga tatak ng mga tao" - -#~ msgid "User" -#~ msgstr "Tagagamit" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Mga tatak sa loob ng mga pabatid ni %s" - -#~ msgid "All subscriptions" -#~ msgstr "Lahat ng mga pagpapasipi" - -#~ msgid "People tags" -#~ msgstr "Mga tatak ng mga tao" - -#~ msgid "People tags by %s." -#~ msgstr "Mga pagtatatak ni %s ng mga tao." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "Tatakan si %1$s bilang %2$s" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 39070e1751..a482845afc 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -125,7 +125,7 @@ msgstr "Зберегти параметри доступу" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -163,9 +163,11 @@ msgstr "Не увійшли." msgid "No such profile." msgstr "Немає такого профілю." -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "Такого теґу немає." #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -187,7 +189,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "Підписані" @@ -631,7 +633,7 @@ msgstr "Повне ім’я надто довге (не більше 255 сим #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2266,7 +2268,7 @@ msgid "Invalid alias: \"%s\"" msgstr "Помилкове додаткове ім’я: «%s»" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "Опції збережено." @@ -2289,11 +2291,6 @@ msgstr "Це недійсний особистий теґ: %s." msgid "No tagger or ID." msgstr "Немає імені або ІД." -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "Такого теґу немає." - #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." msgstr "Такого користувача немає." @@ -4105,26 +4102,26 @@ msgstr "" msgid "People search" msgstr "Пошук людей" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "Загальна стрічка, сторінка %d" +msgid "Public list %s" +msgstr "Загальна хмарка теґів" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "Відповіді до %1$s, сторінка %2$d" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** це спільнота користувачів на %%%%site.name%%%% — сервісі [мікроблоґів]" "(http://uk.wikipedia.org/wiki/Мікроблогінг), який працює на вільному " @@ -4244,10 +4241,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "Поки що ніхто не використовував теґ [hashtag](%%doc.tags%%)." +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "Дописи з теґом %1$s, сторінка %2$d" @@ -4268,23 +4267,23 @@ msgstr "" "програмному забезпеченні [StatusNet](http://status.net/). Учасники цієї " "спільноти роблять короткі дописи про своє життя та інтереси. " -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "Поки що ніхто не використовував теґ [hashtag](%%doc.tags%%)." -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "Тепер ви підписані на дописи %s." + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "Дописи %1$s позначені теґом %2$s, сторінка %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4658,47 +4657,47 @@ msgstr "" "Мікроблогінг), який працює на вільному програмному забезпеченні [StatusNet]" "(http://status.net/)." -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "Загальна хмарка теґів" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "Це найбільш популярні нові теґи на %s" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "Поки що ніхто не використовував теґ [hashtag](%%doc.tags%%)." -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "Станьте першим! Напишіть щось!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" "Чому б не [зареєструватись](%%%%action.register%%%%) і не написати щось " "цікаве!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "Загальна хмарка теґів" +msgid "List cloud" +msgstr "Сторінку не знайдено." -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -5065,7 +5064,7 @@ msgstr "URL-адреса вашого профілю на іншому сумі #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. msgctxt "BUTTON" msgid "Subscribe" msgstr "Підписатись" @@ -5093,7 +5092,21 @@ msgstr "Не вдалося отримати токен запиту." msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "Цією дією ви не зможете підписатися до віддаленого профілю OMB 0.1." -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5284,10 +5297,10 @@ msgstr "Ви не можете нікого ізолювати на цьому msgid "User is already sandboxed." msgstr "Користувача ізольовано доки набереться уму-розуму." -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "Це недійсний особистий теґ: %s." #. TRANS: Page title for page showing self tags. @@ -5575,19 +5588,19 @@ msgid "Notice deleted." msgstr "Допис видалено." #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "Користувачі з особистим теґом «%1$s» — сторінка %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "Користувачі з особистим теґом «%1$s» — сторінка %2$d" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "Дописи %1$s позначені теґом %2$s, сторінка %3$d" @@ -5624,11 +5637,11 @@ msgid "" "yet." msgstr "Це стрічка дописів %s і друзів, але вона поки що порожня." -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5643,7 +5656,7 @@ msgstr "" msgid "Listed" msgstr "Ліцензія" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6149,7 +6162,7 @@ msgstr "Цією дією ви не зможете підписатися до #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "Ви маєте спочатку увійти, аби мати змогу започаткувати спільноту." #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6157,16 +6170,16 @@ msgstr "Ви маєте спочатку увійти, аби мати змог msgid "No ID given." msgstr "Немає ID аргументу." -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "Не вдалось долучити користувача %1$s до спільноти %2$s." -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "Підписані до %1$s, сторінка %2$d" #. TRANS: Header for list of subscribers for a user (first page). @@ -6309,42 +6322,43 @@ msgstr "Стрічка дописів для теґу %s (Atom)" msgid "You cannot tag this user." msgstr "Ви не можете надіслати повідомлення цьому користувачеві." -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "Профіль користувача." -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "Позначити %s" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "Обмеження" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Помилка в Ajax" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "Профіль користувача." -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "Позначити користувача" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "Обмеження" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "Теґи" +msgid "Lists" +msgstr "Обмеження" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" "Позначте себе теґами (літери, цифри, -, . та _), відокремлюючи кожен комою " @@ -6355,13 +6369,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "Теґи" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "Пароль збережено." #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "Скористайтесь цією формою, щоб додати теґи своїм підпискам та читачам." #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6384,10 +6399,10 @@ msgstr "Користувач поки що має право голосу." msgid "Unsubscribed" msgstr "Відписано" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "Підписані до %1$s, сторінка %2$d" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -7065,21 +7080,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "Не вдалося видалити підписку." -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "Не вдалося видалити підписку." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7677,7 +7692,7 @@ msgid "Cancel" msgstr "Скасувати" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "Зберегти" @@ -7723,14 +7738,14 @@ msgid "Do not use this method!" msgstr "Не видаляти цей метод!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "Відповіді до %1$s на %2$s." #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "Оновлення від %1$s на %2$s!" #. TRANS: Title. @@ -9382,15 +9397,15 @@ msgstr "Не вдалося вставити нову підписку." msgid "No oEmbed API endpoint available." msgstr "Кінцева точка oEmbed API є недоступною." -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "Теґ" +msgid "List" +msgstr "Посилання" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "Позначити користувача теґами (літери, цифри, -, . та _), відокремлюючи кожен " "комою або пробілом." @@ -9414,11 +9429,11 @@ msgstr[2] "Опишіть спільноту або тему, вкладаючи msgid "Delete this list." msgstr "Видалити цього користувача." -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9454,7 +9469,7 @@ msgstr "Підписані" msgid "Subscribers to %1$s list by %2$s." msgstr "Тепер ви підписані на дописи %s." -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9480,7 +9495,7 @@ msgstr "Змінити налаштування профілю." msgid "Edit" msgstr "Правка" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9493,48 +9508,57 @@ msgid "List Subscriptions" msgstr "Підписки" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "Тепер ви підписані на дописи %s." #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "Оновлення з «%s»" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "Оновлення з «%s»" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s та %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "Популярні дописи" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "Змінити" +msgid "Edit lists" +msgstr "Це недійсний особистий теґ: %s." + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "Теґи" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9547,11 +9571,12 @@ msgstr "Популярні дописи" msgid "Listed: %1$d Subscribers: %2$d" msgstr "Підписані до %1$s, сторінка %2$d" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "Сторінку не знайдено." -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10167,16 +10192,16 @@ msgid "Choose a field to search." msgstr "Оберіть теґ для звуженого списку." #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s та %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s та %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10235,7 +10260,7 @@ msgid "Unsubscribe from this user" msgstr "Відписатись від цього користувача" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Відписатись" @@ -10326,87 +10351,45 @@ msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "Скористайтесь цією формою, щоб відредагувати властивості спільноти." +#~ msgid "No such people tag." +#~ msgstr "Такого теґу немає." #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "Не вдалося оновити спільноту." +#~ msgid "Public people tag %s" +#~ msgstr "Загальна стрічка, сторінка %d" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "Повторення %s" +#~ msgid "Public people tag cloud" +#~ msgstr "Загальна хмарка теґів" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "Відповіді до %1$s, сторінка %2$d" +#~ msgid "These are most used people tags on %s" +#~ msgstr "Це найбільш популярні нові теґи на %s" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "Повторення %s" +#~ msgid "People tag cloud" +#~ msgstr "Загальна хмарка теґів" + +#~ msgid "Tag %s" +#~ msgstr "Позначити %s" + +#~ msgid "Tag user" +#~ msgstr "Позначити користувача" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "Відповіді до %1$s, сторінка %2$d" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "Проблема при збереженні вхідних дописів спільноти." - -#~ msgid "Groups with most members" -#~ msgstr "Спільноти з найбільшою кількістю учасників" - -#~ msgid "Groups with most posts" -#~ msgstr "Спільноти з найбільшою кількістю дописів" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "Опишіть спільноту або тему." - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "Видалити спільноту." - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "Люди" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "Теґ" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "Змінити налаштування профілю." +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "Змінити" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "Люди, до яких підписується %s." +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s та %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "Всі підписки" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "Люди" - -#~ msgid "User" -#~ msgstr "Користувач" - -#~ msgid "Tags in %s's notices" -#~ msgstr "Теґи у дописах %s" - -#~ msgid "All subscriptions" -#~ msgstr "Всі підписки" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "Люди" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "Люди підписані до %s." +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index c03d7d3a22..cb7732eb48 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:56:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:03+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-04-13 13:56:48+0000\n" +"X-POT-Import-Date: 2011-04-16 23:17:06+0000\n" #. TRANS: Database error message. #, php-format @@ -119,7 +119,7 @@ msgstr "保存访问设置" #. TRANS: Button label to save SMS preferences. #. TRANS: Button text to save snapshot settings. #. TRANS: Save button for settings for a profile in a subscriptions list. -#. TRANS: Button text to save people tags. +#. TRANS: Button text to save lists. #. TRANS: Button text for saving "Other settings" in profile. #. TRANS: Button text to save user settings in user admin panel. #. TRANS: Button label in the "Edit application" form. @@ -156,9 +156,11 @@ msgstr "未登录。" msgid "No such profile." msgstr "没有这个文件。" -#. TRANS: Client error displayed trying to reference a non-existing people tag. +#. TRANS: Client error displayed trying to reference a non-existing list. +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error displayed trying to reference a non-existing list. #, fuzzy -msgid "No such people tag." +msgid "No such list." msgstr "没有此标签。" #. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile. @@ -180,7 +182,7 @@ msgid "" "correctly, please try retrying later." msgstr "" -#. TRANS: Title after subscribing to a people tag. +#. TRANS: Title after subscribing to a list. #. TRANS: Page title when subscription succeeded. msgid "Subscribed" msgstr "已关注" @@ -606,7 +608,7 @@ msgstr "全名过长(不能超过 255 个字符)。" #. TRANS: Validation error shown when providing too long a description in the "Edit application" form. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Group edit form validation error. -#. TRANS: Client error shown when providing too long a description when editing a people tag. +#. TRANS: Client error shown when providing too long a description when editing a list. #. TRANS: %d is the maximum number of allowed characters. #. TRANS: Form validation error in New application form. #. TRANS: %d is the maximum number of characters for the description. @@ -2200,7 +2202,7 @@ msgid "Invalid alias: \"%s\"" msgstr "无效的别名:“%s”。" #. TRANS: Group edit form success message. -#. TRANS: Edit people tag form success message. +#. TRANS: Edit list form success message. msgid "Options saved." msgstr "选项已保存。" @@ -2223,11 +2225,6 @@ msgstr "不是有效的标签:%s。" msgid "No tagger or ID." msgstr "没有昵称或 ID。" -#. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy -msgid "No such list." -msgstr "没有此标签。" - #. TRANS: Client error displayed when referring to non-local user. #, fuzzy msgid "Not a local user." @@ -4006,26 +4003,26 @@ msgstr "" msgid "People search" msgstr "搜索用户" -#. TRANS: Title for people tag page. -#. TRANS: %s is a tag. +#. TRANS: Title for list page. +#. TRANS: %s is a list. #, fuzzy, php-format -msgid "Public people tag %s" -msgstr "公共时间线,第%d页" +msgid "Public list %s" +msgstr "公开的标签云" -#. TRANS: Title for people tag page. -#. TRANS: %1$s is a tag, %2$d is a page number. +#. TRANS: Title for list page. +#. TRANS: %1$s is a list, %2$d is a page number. #, fuzzy, php-format -msgid "Public people tag %1$s, page %2$d" +msgid "Public list %1$s, page %2$d" msgstr "对%s的回复,第%2$d页" -#. TRANS: Message for anonymous users on people tag page. +#. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"People tags are how you sort similar people on %%site.name%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the " -"Free Software [StatusNet](http://status.net/) tool. You can then easily keep " -"track of what they are doing by subscribing to the tag's timeline." +"Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " +"Software [StatusNet](http://status.net/) tool. You can then easily keep " +"track of what they are doing by subscribing to the list's timeline." msgstr "" "**%s** 是%%%%site.name%%%%上的一个小组,%%%%site.name%%%%是一个基于自由软件 " "[StatusNet](http://status.net/) 的[微博客](http://zh.wikipedia.org/zh-hans/%" @@ -4146,10 +4143,12 @@ msgstr "" msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "还没有人发布带[标签](%%doc.tags%%)的消息。" +#. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" msgstr "" +#. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, fuzzy, php-format msgid "Lists with %1$s, page %2$d" msgstr "带%1$s标签的消息,第%2$d页" @@ -4170,23 +4169,23 @@ msgstr "" "E5%BE%AE%E5%8D%9A%E5%AE%A2)。%%%%site.name%%%%的用户分享关于他们生活和各种兴" "趣的消息。" -#. TRANS: Message displayed on page that displays lists for a user when there are none. +#. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). -#. TRANS: %s is a tagger nickname. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "还没有人发布带[标签](%%doc.tags%%)的消息。" -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname. -#, php-format -msgid "Subscribers of people tagged %1$s by %2$s" -msgstr "" - -#. TRANS: Page title for list of people tag subscribers. -#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number. +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname. #, fuzzy, php-format -msgid "Subscribers of people tagged %1$s by %2$s, page %3$d" +msgid "Subscribers to list %1$s by %2$s" +msgstr "已关注%s。" + +#. TRANS: Page title for list of list subscribers. +#. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. +#, fuzzy, php-format +msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "%1$s 的标签 %2$s,第%3$d页" #. TRANS: Title for page that displays lists subscribed to by a user. @@ -4552,45 +4551,45 @@ msgstr "" "这里是%%site.name%%,一个基于自由软件[StatusNet](http://status.net/)的[微博" "客](http://zh.wikipedia.org/zh-hans/%E5%BE%AE%E5%8D%9A%E5%AE%A2) 。" -#. TRANS: Title for page with public people tag cloud. +#. TRANS: Title for page with public list cloud. #, fuzzy -msgid "Public people tag cloud" +msgid "Public list cloud" msgstr "公开的标签云" -#. TRANS: Page notice for page with public people tag cloud. +#. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. #, fuzzy, php-format -msgid "These are most used people tags on %s" +msgid "These are largest lists on %s" msgstr "这些是%s最近的流行的标签" -#. TRANS: Empty list message on page with public people tag cloud. +#. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format -msgid "No one has [tagged](%%doc.tags%%) anyone yet." +msgid "No one has [listed](%%doc.tags%%) anyone yet." msgstr "还没有人发布带[标签](%%doc.tags%%)的消息。" -#. TRANS: Additional empty list message on page with public people tag cloud for logged in users. +#. TRANS: Additional empty list message on page with public list cloud for logged in users. #, fuzzy -msgid "Be the first to tag someone!" +msgid "Be the first to list someone!" msgstr "成为第一个发布消息的人!" -#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users. +#. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" -"Why not [register an account](%%action.register%%) and be the first to tag " +"Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "现在就[注册](%%action.register%%)并发布第一个!" -#. TRANS: DT element on on page with public people tag cloud. +#. TRANS: DT element on on page with public list cloud. #, fuzzy -msgid "People tag cloud" -msgstr "公开的标签云" +msgid "List cloud" +msgstr "API方法没有找到。" -#. TRANS: Link title for number of people tagged. %d is the number of people tagged. +#. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format -msgid "1 person tagged" -msgid_plural "%d people tagged" +msgid "1 person listed" +msgid_plural "%d people listed" msgstr[0] "" #. TRANS: Public RSS feed description. %s is the StatusNet site name. @@ -4946,7 +4945,7 @@ msgstr "另一种兼容的微博客服务配置文件的 URL。" #. TRANS: Button text on page for remote subscribe. #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. -#. TRANS: Button text for subscribing to a people tag. +#. TRANS: Button text for subscribing to a list. #, fuzzy msgctxt "BUTTON" msgid "Subscribe" @@ -4975,7 +4974,21 @@ msgstr "无法获得一个 request token。" msgid "You cannot tag or untag an OMB 0.1 remote profile with this action." msgstr "你不能用这个操作关注一个 OMB 0.1 远程用户。" -#. TRANS: Title after untagging a people tag. +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a username. +#, php-format +msgid "There was an unexpected error while listing %s." +msgstr "" + +#. TRANS: Client error displayed when an unknown error occurs while listing a user. +#. TRANS: %s is a profile URL. +#, php-format +msgid "" +"There was a problem listing %s. The remote server is probably not responding " +"correctly, please try retrying later." +msgstr "" + +#. TRANS: Title after removing a user from a list. msgid "Untagged" msgstr "" @@ -5158,10 +5171,10 @@ msgstr "你不能在这个网站授予用户权限。" msgid "User is already sandboxed." msgstr "用于已经在沙盒中了。" -#. TRANS: Client error displayed when trying to tag a profile with an invalid tag. -#. TRANS: %s is the invalid tag. -#, php-format -msgid "Not a valid people tag: %s." +#. TRANS: Client error displayed when trying to list a profile with an invalid list. +#. TRANS: %s is the invalid list name. +#, fuzzy, php-format +msgid "Not a valid list: %s." msgstr "不是有效的标签:%s。" #. TRANS: Page title for page showing self tags. @@ -5449,19 +5462,19 @@ msgid "Notice deleted." msgstr "消息已删除" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Private timeline for %1$s list by you, page %2$d" msgstr "用户自加标签%s - 第%d 页" #. TRANS: Title for public list timeline where the viewer is the tagger. -#. TRANS: %1$s is a people tag, %2$s is a page number. +#. TRANS: %1$s is a list, %2$s is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by you, page %2$d" msgstr "用户自加标签%s - 第%d 页" #. TRANS: Title for private list timeline. -#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number. +#. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. #, fuzzy, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "%1$s 的标签 %2$s,第%3$d页" @@ -5498,11 +5511,11 @@ msgid "" "yet." msgstr "这是 %s 和好友的时间线,但是没有任何人发布内容。" -#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags. +#. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." msgstr "" -#. TRANS: Additional empty list message for people tag timeline. +#. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). #, fuzzy, php-format msgid "" @@ -5515,7 +5528,7 @@ msgstr "现在就[注册](%%action.register%%)并发布第一个!" msgid "Listed" msgstr "许可协议" -#. TRANS: Link for more "People tagged x by a user" +#. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. #, fuzzy msgid "Show all" @@ -6024,7 +6037,7 @@ msgstr "你不能用这个操作关注一个 OMB 0.1 远程用户。" #. TRANS: Client error displayed when trying to perform an action while not logged in. #, fuzzy -msgid "You must be logged in to unsubscribe to a people tag." +msgid "You must be logged in to unsubscribe from a list." msgstr "你必须登录才能创建小组。" #. TRANS: Client error displayed when trying to perform an action without providing an ID. @@ -6032,16 +6045,16 @@ msgstr "你必须登录才能创建小组。" msgid "No ID given." msgstr "没有 ID 冲突。" -#. TRANS: Server error displayed subscribing to a people tag fails. -#. TRANS: %1$s is a user nickname, %2$s is a people tag. +#. TRANS: Server error displayed subscribing to a list fails. +#. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). #, fuzzy, php-format -msgid "Could not subscribe user %1$s to people tag %2$s." +msgid "Could not subscribe user %1$s to list %2$s: %3$s" msgstr "无法把用户%1$s添加到%2$s小组" -#. TRANS: Title of form to subscribe to a people tag. -#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Title of form to subscribe to a list. +#. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s subscribed to people tag %2$s by %3$s" +msgid "%1$s subscribed to list %2$s by %3$s" msgstr "%1$s的关注者,第%2$d页" #. TRANS: Header for list of subscribers for a user (first page). @@ -6180,42 +6193,43 @@ msgstr "%s标签的消息聚合 (Atom)" msgid "You cannot tag this user." msgstr "无法向此用户发送消息。" -#. TRANS: Title for people tag form when not on a profile page. +#. TRANS: Title for list form when not on a profile page. #, fuzzy -msgid "Tag a profile" +msgid "List a profile" msgstr "用户页面" -#. TRANS: Title for people tag form when on a profile page. +#. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, php-format -msgid "Tag %s" -msgstr "将%s加为标签" +#, fuzzy, php-format +msgctxt "ADDTOLIST" +msgid "List %s" +msgstr "限制" -#. TRANS: Title for people tag form when an error has occurred. +#. TRANS: Title for list form when an error has occurred. #, fuzzy msgctxt "TITLE" msgid "Error" msgstr "Ajax错误" -#. TRANS: Header in people tag form. +#. TRANS: Header in list form. msgid "User profile" msgstr "用户页面" -#. TRANS: Fieldset legend for people tag form. -msgid "Tag user" -msgstr "将用户加为标签" +#. TRANS: Fieldset legend for list form. +#, fuzzy +msgid "List user" +msgstr "限制" -#. TRANS: Field label on people tag form. -#. TRANS: Label in self tags widget. +#. TRANS: Field label on list form. #, fuzzy msgctxt "LABEL" -msgid "Tags" -msgstr "标签" +msgid "Lists" +msgstr "限制" -#. TRANS: Field title on people tag form. +#. TRANS: Field title on list form. #, fuzzy msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "你的标签 (字母、数字、“-”、“. ”和“ _”), 以逗号或空格分隔" @@ -6225,13 +6239,14 @@ msgctxt "TITLE" msgid "Tags" msgstr "标签" -#. TRANS: Success message if people tags are saved. +#. TRANS: Success message if lists are saved. #, fuzzy -msgid "Tags saved." +msgid "Lists saved." msgstr "密码已保存。" #. TRANS: Page notice. -msgid "Use this form to add tags to your subscribers or subscriptions." +#, fuzzy +msgid "Use this form to add your subscribers or subscriptions to lists." msgstr "使用这个表单给你的关注者或你关注的用户添加标签。" #. TRANS: Client error when requesting a tag feed for a non-existing tag. @@ -6254,10 +6269,10 @@ msgstr "用户未被禁言。" msgid "Unsubscribed" msgstr "已取消关注" -#. TRANS: Page title for form that allows unsubscribing from a people tag. -#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname. +#. TRANS: Page title for form that allows unsubscribing from a list. +#. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. #, fuzzy, php-format -msgid "%1$s unsubscribed to people tag %2$s by %3$s" +msgid "%1$s unsubscribed from list %2$s by %3$s" msgstr "%1$s的关注者,第%2$d页" #. TRANS: Client error displayed when trying to update profile with an incompatible license. @@ -6911,21 +6926,21 @@ msgid "" "of tags. Try using or deleting some existing tags." msgstr "" -#. TRANS: Client exception thrown trying to set one tag for more people than allowed. +#. TRANS: Client exception thrown when trying to add more people than allowed to a list. #, php-format msgid "" -"You already have %1$d or more people tagged %2$s, which is the maximum " -"allowed number.Try untagging others with the same tag first." +"You already have %1$d or more people in list %2$s, which is the maximum " +"allowed number.Try unlisting others first." msgstr "" -#. TRANS: Exception thrown when inserting a people tag subscription in the database fails. +#. TRANS: Exception thrown when inserting a list subscription in the database fails. #, fuzzy -msgid "Adding people tag subscription failed." +msgid "Adding list subscription failed." msgstr "无法取消关注。" -#. TRANS: Exception thrown when deleting a people tag subscription from the database fails. +#. TRANS: Exception thrown when deleting a list subscription from the database fails. #, fuzzy -msgid "Removing people tag subscription failed." +msgid "Removing list subscription failed." msgstr "无法取消关注。" #. TRANS: Exception thrown when a right for a non-existing user profile is checked. @@ -7531,7 +7546,7 @@ msgid "Cancel" msgstr "取消" #. TRANS: Submit button title. -#. TRANS: Button text to save a people tag. +#. TRANS: Button text to save a list. msgid "Save" msgstr "保存" @@ -7578,14 +7593,14 @@ msgid "Do not use this method!" msgstr "不要使用此方法 !" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, php-format -msgid "Timeline for people tagged #%1$s by %2$s" -msgstr "" +#, fuzzy, php-format +msgid "Timeline for people in list %1$s by %2$s" +msgstr "在%2$s上对%1$s的回复!" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. #, fuzzy, php-format -msgid "Updates from %1$s's %2$s people tag on %3$s!" +msgid "Updates from %1$s's list %2$s on %3$s!" msgstr "%2$s 上 %1$s 的更新!" #. TRANS: Title. @@ -9222,15 +9237,15 @@ msgstr "无法添加新的关注。" msgid "No oEmbed API endpoint available." msgstr "IM 不可用。" -#. TRANS: Field label for people tag. +#. TRANS: Field label for list. #, fuzzy msgctxt "LABEL" -msgid "Tag" -msgstr "标签" +msgid "List" +msgstr "链接" -#. TRANS: Field title for people tag. +#. TRANS: Field title for list. #, fuzzy -msgid "Change the tag (letters, numbers, -, ., and _ are allowed)." +msgid "Change the list (letters, numbers, -, ., and _ are allowed)." msgstr "" "给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" @@ -9251,11 +9266,11 @@ msgstr[0] "用不超过%d个字符描述你的应用" msgid "Delete this list." msgstr "删除此用户。" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" -#. TRANS: Header in people tag edit form. +#. TRANS: Header in list edit form. #, fuzzy msgctxt "HEADER" msgid "Search" @@ -9292,7 +9307,7 @@ msgstr "关注者" msgid "Subscribers to %1$s list by %2$s." msgstr "已关注%s。" -#. TRANS: Menu item in people tag navigation panel. +#. TRANS: Menu item in list navigation panel. #, fuzzy msgctxt "MENU" msgid "Edit" @@ -9318,7 +9333,7 @@ msgstr "编辑个人信息设置" msgid "Edit" msgstr "编辑" -#. TRANS: Privacy mode text in people tag list item for private tags. +#. TRANS: Privacy mode text in list list item for private list. #, fuzzy msgctxt "MODE" msgid "Private" @@ -9331,48 +9346,57 @@ msgid "List Subscriptions" msgstr "关注的" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." msgstr "已关注%s。" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "MENU" msgid "Lists with %s" msgstr "\"%s\"的更新" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists with %s." msgstr "\"%s\"的更新" #. TRANS: Menu item in the group navigation page. +#. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" msgstr "" #. TRANS: Tooltip for menu item in the group navigation page. -#. TRANS: %s is the nickname of the group. +#. TRANS: %s is a user nickname. #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Lists by %s." msgstr "%1$s - %2$s" -#. TRANS: Label in people tags widget. +#. TRANS: Label in lists widget. +#, fuzzy msgctxt "LABEL" -msgid "Tags by you" -msgstr "" +msgid "Your lists" +msgstr "最新被收藏的消息" -#. TRANS: Fieldset legend in people tags widget. +#. TRANS: Fieldset legend in lists widget. #, fuzzy msgctxt "LEGEND" -msgid "Edit tags" -msgstr "编辑" +msgid "Edit lists" +msgstr "不是有效的标签:%s。" + +#. TRANS: Label in self tags widget. +#, fuzzy +msgctxt "LABEL" +msgid "Tags" +msgstr "标签" #. TRANS: Title for section contaning lists with the most subscribers. #, fuzzy @@ -9385,11 +9409,12 @@ msgstr "最新被收藏的消息" msgid "Listed: %1$d Subscribers: %2$d" msgstr "%1$s的关注者,第%2$d页" +#. TRANS: Title for page that displays which lists current user is part of. #, fuzzy, php-format msgid "Lists with you" msgstr "API方法没有找到。" -#. TRANS: Title for page that displays which people tags a user has been tagged with. +#. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. #, fuzzy, php-format msgid "Lists with %s" @@ -10010,16 +10035,16 @@ msgid "Choose a field to search." msgstr "选择标签缩小清单" #. TRANS: Form legend. -#. TRANS: %1$s is a nickname, $2$s is a people tag. +#. TRANS: %1$s is a nickname, $2$s is a list. #, fuzzy, php-format -msgid "Untag %1$s as %2$s" +msgid "Remove %1$s from list %2$s" msgstr "%1$s - %2$s" -#. TRANS: Legend on form to add a tag to a profile. -#. TRANS: %1$s is a nickname, %2$s ia a people tag. +#. TRANS: Legend on form to add a profile to a list. +#. TRANS: %1$s is a nickname, %2$s is a list. #, fuzzy, php-format -msgid "Tag %1$s as %2$s" -msgstr "RT @%1$s %2$s" +msgid "Add %1$s to list %2$s" +msgstr "%1$s - %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -10081,7 +10106,7 @@ msgid "Unsubscribe from this user" msgstr "取消关注这个用户" #. TRANS: Button text on unsubscribe form. -#. TRANS: Button text for unsubscribing from a people tag. +#. TRANS: Button text for unsubscribing from a list. #, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" @@ -10165,87 +10190,45 @@ msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" #, fuzzy -#~ msgid "Use this form to edit the people tag." -#~ msgstr "通过这个表单来编辑小组" +#~ msgid "No such people tag." +#~ msgstr "没有此标签。" #, fuzzy -#~ msgid "Could not update people tag." -#~ msgstr "无法更新小组" +#~ msgid "Public people tag %s" +#~ msgstr "公共时间线,第%d页" #, fuzzy -#~ msgid "People tags by %s" -#~ msgstr "%s 的转发" +#~ msgid "Public people tag cloud" +#~ msgstr "公开的标签云" #, fuzzy -#~ msgid "People tags by %1$s, page %2$d" -#~ msgstr "对%s的回复,第%2$d页" +#~ msgid "These are most used people tags on %s" +#~ msgstr "这些是%s最近的流行的标签" #, fuzzy -#~ msgid "People tags for %s" -#~ msgstr "%s 的转发" +#~ msgid "People tag cloud" +#~ msgstr "公开的标签云" + +#~ msgid "Tag %s" +#~ msgstr "将%s加为标签" + +#~ msgid "Tag user" +#~ msgstr "将用户加为标签" #, fuzzy -#~ msgid "People tags for %1$s, page %2$d" -#~ msgstr "对%s的回复,第%2$d页" - -#, fuzzy -#~ msgid "Problem saving profile_tag inbox." -#~ msgstr "保存小组收件箱时出错。" - -#~ msgid "Groups with most members" -#~ msgstr "人气最旺的小组" - -#~ msgid "Groups with most posts" -#~ msgstr "发布消息最多的小组" - -#, fuzzy -#~ msgid "Describe the people tag or topic." -#~ msgstr "小组或主题的描述" - -#, fuzzy -#~ msgid "Delete this people tag." -#~ msgstr "删除此组。" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tag" -#~ msgstr "用户" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "Tagged" +#~ msgctxt "LABEL" +#~ msgid "Tag" #~ msgstr "标签" #, fuzzy -#~ msgid "Edit people tag settings." -#~ msgstr "编辑个人信息设置" +#~ msgctxt "LEGEND" +#~ msgid "Edit tags" +#~ msgstr "编辑" #, fuzzy -#~ msgid "People tags with most subscribers" -#~ msgstr "%s关注的用户" +#~ msgid "Untag %1$s as %2$s" +#~ msgstr "%1$s - %2$s" #, fuzzy -#~ msgid "People tag subscriptions" -#~ msgstr "所有关注的" - -#, fuzzy -#~ msgctxt "MENU" -#~ msgid "People tags" -#~ msgstr "用户" - -#~ msgid "User" -#~ msgstr "用户" - -#~ msgid "Tags in %s's notices" -#~ msgstr "%s的消息中的标签" - -#~ msgid "All subscriptions" -#~ msgstr "所有关注的" - -#, fuzzy -#~ msgid "People tags" -#~ msgstr "用户" - -#, fuzzy -#~ msgid "People tags by %s." -#~ msgstr "关注了%s的用户" +#~ msgid "Tag %1$s as %2$s" +#~ msgstr "RT @%1$s %2$s" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index e4061142dd..b8e6c7f5da 100644 --- a/plugins/APC/locale/APC.pot +++ b/plugins/APC/locale/APC.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/APC/locale/ast/LC_MESSAGES/APC.po b/plugins/APC/locale/ast/LC_MESSAGES/APC.po index b9737db277..ba6e0cae87 100644 --- a/plugins/APC/locale/ast/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ast/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po index 89a7b76467..f588034a7b 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index edd9233a4c..a8c315e258 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po index 5a7bbc918f..aabd094565 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index c441bed43c..5a0e9cc108 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 5648f84745..4ae7c8a554 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 250cbf1bac..4883dd4ef1 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po index e0da4c00d6..140ecaae1e 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index d496b7ecf0..f12f828723 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index 29ce6423d6..0446ec0787 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index 5e05a535df..89f77c6856 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 261ded7fca..17d79aeea4 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c7f625a3c5..dec110cbc5 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f99ecae6f1..9ea62ad40b 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f6440ed2d3..9f77385522 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 cf03f43c9c..efb482b198 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6f07a0c432..58254fd6b0 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 903c1d02b6..18b96a9456 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:10+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 946ffc9994..16630e8672 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 19b674697e..85ebb98377 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:11+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/AccountManager/locale/AccountManager.pot b/plugins/AccountManager/locale/AccountManager.pot index 6c4e5768d2..1de0a80694 100644 --- a/plugins/AccountManager/locale/AccountManager.pot +++ b/plugins/AccountManager/locale/AccountManager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po index 6d7d8db0c3..fb8cb836c3 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po index 9d7a2383b8..70b584b0ee 100644 --- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po index 7e98c3f650..a1e7164ba1 100644 --- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po index c85b755615..d0bb8b1778 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index ad3076de8b..5e37e0689a 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po index 0735330e5c..dba9bedcff 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po index 6c5229f810..cd9d80691f 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po index a88192bebe..caea230e2b 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po index 0820645302..587a3f983e 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po index 8670a22362..d833b56580 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po index b92e0f9a04..b6a368338f 100644 --- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po index 1deb4e20e6..024a56e54d 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po index 244c3e75a7..9eca2305bf 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:55:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index 5cd79a6396..1e038e8cdc 100644 --- a/plugins/Adsense/locale/Adsense.pot +++ b/plugins/Adsense/locale/Adsense.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po index 5d4a639624..577f197e89 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index ed7c78d268..5bd3d1b602 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po index cfc9067d76..f4b0cad3e0 100644 --- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" @@ -93,12 +93,10 @@ msgid "Wide skyscraper slot code." msgstr "" #. TRANS: Button text to save settings in AdSense administration panel. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Desa" #. TRANS: Button title to save settings in AdSense administration panel. -#, fuzzy msgid "Save AdSense settings." -msgstr "Desa els paràmetres de l'AdSense" +msgstr "Desa els paràmetres de l'AdSense." diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index 4f572f3963..bc4a227bcd 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index 30dadae579..6792ae3ad1 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 b2a2434d53..2fb9af2e7f 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a60c5f0c49..b46d7cb4c2 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e5e4a44424..0bbc2ff9dc 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index 650907a213..f673efa90e 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 1c0e72b580..2a38136fc7 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 7c24c86021..779e370717 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 da1553acd6..05aa15ed5f 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po index db0b8229d6..8bcc0e6493 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index eea00c4ce3..79f6f53330 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:06+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index 02464a0729..1fa1b6af17 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:07+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index ddec4b16e8..773588d7dc 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 5f8f28a36a..4a6bd08269 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 19082d6dc8..8eec8f503f 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Aim/locale/Aim.pot b/plugins/Aim/locale/Aim.pot index a54d72d783..e057943440 100644 --- a/plugins/Aim/locale/Aim.pot +++ b/plugins/Aim/locale/Aim.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po index 1be9f52f6f..6f994039e4 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:07+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po index d34df79290..dec7cc1fdd 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po index 087a6fea73..312555cd4e 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po index ecd97cb1e2..f26810b608 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po index 808ca48a07..c643a008ec 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:07+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po index 4b15c0881f..eca6a64469 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:08+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po index c16647750d..416693eb74 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po index b15c71234f..94ce4e1432 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index e08fc04fc5..561afac9a4 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po index 02fc60c02f..b334e48c33 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index f2c8002bd3..4591643e69 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index 78c057aa47..7c5c515dc2 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index 5324f98be7..3572130d68 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index 085f003f7c..fe7770ac53 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index 56628a2470..1054af8ab3 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index bcacc8f1bd..5619dd3074 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index 98d1760e48..5e0e024b95 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index 63ddf9db91..79768731f3 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po index fac034753b..27b0094946 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index 9572df516f..afe8c58b05 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 3038d6f0e4..ca535a9c51 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/ApiLogger/locale/ApiLogger.pot b/plugins/ApiLogger/locale/ApiLogger.pot index 6c46a53c3c..65203ea9c7 100644 --- a/plugins/ApiLogger/locale/ApiLogger.pot +++ b/plugins/ApiLogger/locale/ApiLogger.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po index 53377e710e..6e6986bfdb 100644 --- a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:11+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:52+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po index 1d6e888e7d..edf02238a4 100644 --- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:52+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po index f13053d546..20cac6709f 100644 --- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:52+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po index 50b4c56e60..28531720a9 100644 --- a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:52+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po new file mode 100644 index 0000000000..2cdfd7ab6e --- /dev/null +++ b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - ApiLogger to Tagalog (Tagalog) +# Exported from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ApiLogger\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:11+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-13 13:56:52+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-apilogger\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Allows random sampling of API requests." +msgstr "Nagpapahintulot ng sapalarang paghahalimbawa ng mga kahilingan ng API." diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 4cd9f28161..0a1d8b2a05 100644 --- a/plugins/AutoSandbox/locale/AutoSandbox.pot +++ b/plugins/AutoSandbox/locale/AutoSandbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po index 9082bab9e5..4f3bfcb03e 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po index f5ed78a419..4e4d382630 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index e13613ac2f..427f10d969 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index f6b687aefb..1628f98ea2 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8d1af304cf..92f9727c94 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3b133f58ba..d3ebd6c8f4 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6e665f2136..45771ca958 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 37eb5aafab..8e71452ebe 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index 394f1e6c3f..95c4280398 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index 22b32d7d05..893c217fec 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a1f49d9c36..ed4f0e80e5 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f7355d4f03..bee2303e38 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e279bfcae7..e9cd1cb0f6 100644 --- a/plugins/Autocomplete/locale/Autocomplete.pot +++ b/plugins/Autocomplete/locale/Autocomplete.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po index 6423240700..c0c48409ef 100644 --- a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 1ea00f120c..935df234df 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index db72d7b25c..8ca69eb1cc 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3c15631498..9faadbad03 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index 2ba45d1ff0..15eb6de308 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" @@ -24,6 +24,8 @@ msgstr "" #. TRANS: Plugin description. msgid "The autocomplete plugin adds autocompletion for @ replies." msgstr "" +"Ang pampasak ng kusang pagpuno ay nagdaragdag ng kusang pagbubuo para sa mga " +"katugunang @." #. TRANS: Client exception in autocomplete plugin. msgid "Access forbidden." diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 26a020efec..dec9733ed7 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Awesomeness/locale/Awesomeness.pot b/plugins/Awesomeness/locale/Awesomeness.pot index 2e7e6f057a..625ef9b261 100644 --- a/plugins/Awesomeness/locale/Awesomeness.pot +++ b/plugins/Awesomeness/locale/Awesomeness.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po index 0ad0b6b779..e856caa090 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po index baafb0b404..78823f0a05 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po index 9a4a08e189..a27d57880c 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po index ab0e72eb53..7eaa96d3b8 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po index b7092af46c..4bfe372dfb 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po index 5fb970fe6b..83efdbb7a4 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po index 14ac511f90..88622273e2 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po index 8c67bec526..a4ac21b5fc 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:14+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po index d19941a7ed..5962f4526b 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po new file mode 100644 index 0000000000..b861fb2797 --- /dev/null +++ b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - Awesomeness to Tagalog (Tagalog) +# Exported from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Awesomeness\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:14+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-awesomeness\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "" +"The Awesomeness plugin adds additional awesomeness to a StatusNet " +"installation." +msgstr "" +"Ang pampasak ng Pagiging Kahanga-hanga ay nagdaragdag ng karagdagang " +"pagiging kahanga-hanga sa isang pagtatalaga ng StatusNet." diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index 80155aa797..84e21a37ce 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:23:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 0e4407b195..698fd0fca3 100644 --- a/plugins/BitlyUrl/locale/BitlyUrl.pot +++ b/plugins/BitlyUrl/locale/BitlyUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po index fd790a8fee..b3c721f34e 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po index 7d5d87af8e..7e38a831c8 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -38,17 +38,14 @@ msgstr "" "personalitzats." #. TRANS: Client error displayed when using too long a key. -#, fuzzy msgid "Invalid login. Maximum length is 255 characters." msgstr "Inici de sessió no vàlid. La longitud màxima és de 255 caràcters." #. TRANS: Client error displayed when using too long a key. -#, fuzzy msgid "Invalid API key. Maximum length is 255 characters." msgstr "Clau API no vàlida. La longitud màxima és de 255 caràcters." #. TRANS: Fieldset legend in administration panel for bit.ly username and API key. -#, fuzzy msgctxt "LEGEND" msgid "Credentials" msgstr "Credencials" @@ -79,9 +76,8 @@ msgid "Save bit.ly settings" msgstr "Desa els paràmetres de bit.ly" #. TRANS: Exception thrown when bit.ly URL shortening plugin was configured incorrectly. -#, fuzzy msgid "You must specify a serviceUrl for bit.ly URL shortening." -msgstr "Heu d'especificar un URL de servei per a l'escurçament de bit.ly" +msgstr "Heu d'especificar un URL de servei per a l'escurçament de bit.ly." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format @@ -94,6 +90,5 @@ msgid "bit.ly" msgstr "bit.ly" #. TRANS: Title for menu item in administration menus for bit.ly URL shortening settings. -#, fuzzy msgid "bit.ly URL shortening." -msgstr "Escurçament d'URL bit.ly" +msgstr "Escurçament d'URL bit.ly." diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index afc572b283..1b85b1594f 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 25be7378b8..dac4d9f1e0 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f669631f38..841b3a3547 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a45f62c524..da1734b8c0 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c4baa4618a..37e5b17c5e 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8953bf27ed..7c9a95d630 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index 7af30cfd23..3632afbe03 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 beb152fe0e..a70155cead 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -23,7 +23,7 @@ msgstr "" #. TRANS: Title of administration panel. msgid "bit.ly URL shortening" -msgstr "" +msgstr "Pagpapaikli ng URL ng bit.ly" #. TRANS: Instructions for administration panel. #. TRANS: This message contains Markdown links in the form [decsription](link). @@ -36,10 +36,14 @@ msgstr "" #. TRANS: Client error displayed when using too long a key. msgid "Invalid login. Maximum length is 255 characters." msgstr "" +"Hindi katanggap-tanggap na paglagdang papasok. Ang pinakamataas na haba ay " +"255 mga panitik." #. TRANS: Client error displayed when using too long a key. msgid "Invalid API key. Maximum length is 255 characters." msgstr "" +"Hindi katanggap-tanggap na susi ng API. Ang pinakamataas na haba ay 255 mga " +"panitik." #. TRANS: Fieldset legend in administration panel for bit.ly username and API key. msgctxt "LEGEND" @@ -49,10 +53,14 @@ msgstr "Mga katangian" #. TRANS: Form guide in administration panel for bit.ly URL shortening. msgid "Leave these empty to use global default credentials." msgstr "" +"Iwanang walang lamang ang mga ito upang magamit ang pandaigdigang likas na " +"nakatakdang mga katangian." #. TRANS: Form guide in administration panel for bit.ly URL shortening. msgid "If you leave these empty, bit.ly will be unavailable to users." msgstr "" +"Kapag iniwan mong walang lamang ang mga ito, hindi makukuha ng mga tagagamit " +"ang bit.ly." #. TRANS: Field label in administration panel for bit.ly URL shortening. msgid "Login name" @@ -74,6 +82,8 @@ msgstr "Sagipin ang mga katakdaan ng bit.ly" #. TRANS: Exception thrown when bit.ly URL shortening plugin was configured incorrectly. msgid "You must specify a serviceUrl for bit.ly URL shortening." msgstr "" +"Dapat kang tumukoy ng isang URL ng palingkuran para sa pagpapaikli ng URL na " +"bit.ly." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format @@ -88,4 +98,4 @@ msgstr "bit.ly" #. TRANS: Title for menu item in administration menus for bit.ly URL shortening settings. msgid "bit.ly URL shortening." -msgstr "" +msgstr "Pagpapaikli ng URL ng bit.ly" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index 5984dc99f8..d2b47e0390 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 586b17dd29..152a35d7c0 100644 --- a/plugins/Blacklist/locale/Blacklist.pot +++ b/plugins/Blacklist/locale/Blacklist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-10 08:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po index a2b83189a2..33f2eada9a 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:17+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po index 1422ff2238..4acf3c4219 100644 --- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:17+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" @@ -63,10 +63,9 @@ msgid "Blacklist" msgstr "Llista negra" #. TRANS: Tooltip for menu item in admin panel. -#, fuzzy msgctxt "TOOLTIP" msgid "Blacklist configuration." -msgstr "Configuració de la llista negra" +msgstr "Configuració de la llista negra." #. TRANS: Checkbox label in the blacklist user form. msgid "Add this nickname pattern to blacklist" @@ -78,7 +77,7 @@ msgstr "Afegeix aquest patró de pàgina d'inici a la llista negra" #. TRANS: Exception thrown trying to post a notice while having set a blocked homepage URL. %s is the blocked URL. #. TRANS: Client exception thrown trying to subscribe to a person with a blocked homepage or site URL. %s is the blocked URL. -#, fuzzy, php-format +#, php-format msgid "Users from \"%s\" are blocked." msgstr "S'han blocat els usuaris de «%s»." diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index 2d1ea25092..0d340cc37d 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index fdda3cd11d..cdfb2174a9 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index f456683200..c340b31d04 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f3cecbfc7f..e1c6f6ef48 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f584df4612..8f846f0e02 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po index 6815474d54..b31ed77c2e 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po index ca757b9370..c729593b72 100644 --- a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po index 3a44465aeb..2e84ecc7c9 100644 --- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" @@ -25,7 +25,7 @@ msgstr "" #. TRANS: %1$s is a configuration section, %2$s is a configuration setting. #, php-format msgid "Unknown data type for config %1$s + %2$s." -msgstr "" +msgstr "Hindi nalalamang uri ng dato para sa pagkakaayos na %1$s + %2$s." #. TRANS: Validation failure for URL. %s is the URL. #, php-format diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index 8b0af5b8ef..a21f862f3f 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a41835c368..cc9ddb5a16 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:20+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 253771c215..b2726c6c1f 100644 --- a/plugins/BlankAd/locale/BlankAd.pot +++ b/plugins/BlankAd/locale/BlankAd.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po index 3c6141207a..8e41e12f57 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index 90b2970994..186031586e 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po index 28eb3b7102..b4f91eb64c 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index dc85d2e537..cf71cb6c6f 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po index b04e0be8e8..60c75574ab 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index f374f41aed..06c7bd4d36 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index e08439e812..daee2a1aea 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:18+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index d32994ee27..7972fef770 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 1f30fdea51..5f138efc98 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index 028d2e02b5..4e1488683e 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index 0f7ba600e3..ffb766acb5 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index e479e1c3f3..35a0b700b7 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index d354a1ebd0..7b97167bdd 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po index 07e154b7e1..d3d0146c08 100644 --- a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index 486334613c..7b0fcb80bd 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 fb0c5237b2..f69672a9ab 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 417a203362..526871bf79 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 86e8773005..e92ddbf344 100644 --- a/plugins/BlogspamNet/locale/BlogspamNet.pot +++ b/plugins/BlogspamNet/locale/BlogspamNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 6183dedfa0..d14ce256ad 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 1d25bb3734..7ee4586cf6 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 190172dfc4..b8d63b0a5c 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index 7f6ae496f7..c67c4a97ed 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:20+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index 4875e4b51d..a5d7593a61 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ca0be39386..e8d84c9619 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:20:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 8476066304..0fd0a9cee7 100644 --- a/plugins/Bookmark/locale/Bookmark.pot +++ b/plugins/Bookmark/locale/Bookmark.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po index 32cce4ac41..a4a6e2baf3 100644 --- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:23+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -261,24 +261,10 @@ msgid "Bookmark must have an URL." msgstr "" #. TRANS: Page title after posting a bookmark. -#, fuzzy msgid "Bookmark posted" -msgstr "Adreça d'interès a %s" +msgstr "S'ha publicat l'adreça d'interès" #. TRANS: %s is the filename that contains a backup for a user. #, php-format msgid "Getting backup from file \"%s\"." msgstr "" - -#~ msgid "Title of the bookmark." -#~ msgstr "Títol de l'adreça d'interès." - -#~ msgid "URL to bookmark." -#~ msgstr "D'URL a adreça d'interès." - -#~ msgctxt "LABEL" -#~ msgid "Description" -#~ msgstr "Descripció" - -#~ msgid "Description of the URL." -#~ msgstr "Descripció de l'URL." diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index 17d4d76dce..23e7045292 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -276,16 +276,3 @@ msgstr "Marcapaginas placiate" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Obtene copia de reserva ex file \"%s\"." - -#~ msgid "Title of the bookmark." -#~ msgstr "Titulo del marcapginas." - -#~ msgid "URL to bookmark." -#~ msgstr "URL pro marcapaginas." - -#~ msgctxt "LABEL" -#~ msgid "Description" -#~ msgstr "Description" - -#~ msgid "Description of the URL." -#~ msgstr "Description del URL." diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index 1ddbd089a4..b01608b13e 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -109,7 +109,7 @@ msgstr "URL" #. TRANS: Button text for action to save a new bookmark. msgctxt "BUTTON" msgid "Add" -msgstr "" +msgstr "Додај" #. TRANS: Client exception thrown when an unknown URL is provided. msgid "Unknown URL." @@ -233,7 +233,7 @@ msgstr "Назив" #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" msgid "Notes" -msgstr "" +msgstr "Белешки" #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" @@ -273,16 +273,3 @@ msgstr "Одбележувачот е поставен" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Земам резерва на податотеката „%s“." - -#~ msgid "Title of the bookmark." -#~ msgstr "Назив на одбележувачот." - -#~ msgid "URL to bookmark." -#~ msgstr "URL за одбележување." - -#~ msgctxt "LABEL" -#~ msgid "Description" -#~ msgstr "Опис" - -#~ msgid "Description of the URL." -#~ msgstr "Опис на URL-адресата." diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index ad552e3d72..b91f22f419 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -110,7 +110,7 @@ msgstr "URL" #. TRANS: Button text for action to save a new bookmark. msgctxt "BUTTON" msgid "Add" -msgstr "" +msgstr "Toevoegen" #. TRANS: Client exception thrown when an unknown URL is provided. msgid "Unknown URL." @@ -235,7 +235,7 @@ msgstr "Naam" #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" msgid "Notes" -msgstr "" +msgstr "Opmerkingen" #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" @@ -275,16 +275,3 @@ msgstr "De bladwijzer is geplaatst" #, php-format msgid "Getting backup from file \"%s\"." msgstr "De back-up wordt uit het bestand \"%s\" geladen." - -#~ msgid "Title of the bookmark." -#~ msgstr "Naam van de bladwijzer." - -#~ msgid "URL to bookmark." -#~ msgstr "URL voor bladwijzer." - -#~ msgctxt "LABEL" -#~ msgid "Description" -#~ msgstr "Beschrijving" - -#~ msgid "Description of the URL." -#~ msgstr "Beschrijving van de URL." diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po index dfaae07712..4df68c2ace 100644 --- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -45,26 +45,27 @@ msgstr "Pananda ni %1$s para sa \"%2$s\"" #. TRANS: Plugin description. msgid "Simple extension for supporting bookmarks." -msgstr "" +msgstr "Payak na dugtong para sa pagtatangkilik ng mga pananda." #. TRANS: Link text in proile leading to import form. #. TRANS: Title for page to import del.icio.us bookmark backups on. msgid "Import del.icio.us bookmarks" -msgstr "" +msgstr "Angkatin ang mga pananda ng del.icio.us" #. TRANS: Client exception thrown when a bookmark is formatted incorrectly. msgid "Expected exactly 1 link rel=related in a Bookmark." msgstr "" +"Inaasahan ang talagang 1 kawing na rel=kaugnay sa loob ng isang Pananda." #. TRANS: Server exception thrown when a bookmark has multiple attachments. msgid "Bookmark notice with the wrong number of attachments." -msgstr "" +msgstr "Pabatid ng pananda na may maling bilang ng mga kalakip." #. TRANS: Exception thrown when a bookmark has no attachments. #. TRANS: %1$s is a bookmark ID, %2$s is a notice ID (number). #, php-format msgid "Bookmark %1$s (notice %2$d) has no attachments." -msgstr "" +msgstr "Ang panandang %1$s (pabatid na %2$d) ay walang mga kalakip." #. TRANS: Application title. msgctxt "TITLE" @@ -86,7 +87,7 @@ msgstr "Umiiral na ang pananda." #. TRANS: %4$s is space separated list of hash tags. #, php-format msgid "\"%1$s\" %2$s %3$s %4$s" -msgstr "" +msgstr "\"%1$s\" %2$s %3$s %4$s" #. TRANS: Rendered bookmark content. #. TRANS: %1$s is a URL, %2$s the bookmark title, %3$s is the bookmark description, @@ -97,6 +98,9 @@ msgid "" "%3$s %4$s" msgstr "" +"%2$s %3$s %" +"4$s" #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" @@ -106,7 +110,7 @@ msgstr "URL" #. TRANS: Button text for action to save a new bookmark. msgctxt "BUTTON" msgid "Add" -msgstr "" +msgstr "Idagdag" #. TRANS: Client exception thrown when an unknown URL is provided. msgid "Unknown URL." @@ -127,6 +131,8 @@ msgstr "Mga pabatid na kumakawing sa %1$s, pahina %2$d" #. TRANS: Client exception thrown when trying to import bookmarks without being logged in. msgid "Only logged-in users can import del.icio.us backups." msgstr "" +"Tanging nakalagdang mga tagagamit lamang ang makapag-aangkat ng mga kopyang " +"pamalit ng del.icio.us." #. TRANS: Client exception thrown when trying to import bookmarks without having the rights to do so. msgid "You may not restore your account." @@ -140,16 +146,20 @@ msgstr "Walang naikargang talaksan." #. TRANS: Client exception thrown when an uploaded file is too large. msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" +"Ang ikinargang talaksan ay lumalampas sa kautusang " +"magkarga_ng_pinakamataas_na_sukat_ng_talaksan sa loob ng php.ini." #. TRANS: Client exception thrown when an uploaded file is too large. msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" +"Lumalampas ang ikinargang talaksan sa kaatasang MAX_FILE_SIZE na tinukoy sa " +"loob ng pormularyo ng HTML." #. TRANS: Client exception thrown when a file was only partially uploaded. msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "Bahagi lamang ng naikargang talaksan ang naikargang papaitaas." #. TRANS: Client exception thrown when a temporary folder is not present. msgid "Missing a temporary folder." @@ -208,6 +218,8 @@ msgstr "" #. TRANS: Form instructions for importing bookmarks. msgid "You can upload a backed-up delicious.com bookmarks file." msgstr "" +"Makapagkakarga kang papaitaas ng isang pamalit na kopya ng talaksan ng mga " +"pananda ng delicious.com" #. TRANS: Button text on form to import bookmarks. msgctxt "BUTTON" @@ -226,7 +238,7 @@ msgstr "Pamagat" #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" msgid "Notes" -msgstr "" +msgstr "Mga tala" #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" @@ -266,16 +278,3 @@ msgstr "Ipinaskil na ang pananda." #, php-format msgid "Getting backup from file \"%s\"." msgstr "Kinukuha ang kopyang pamalit mula sa talaksang \"%s\"." - -#~ msgid "Title of the bookmark." -#~ msgstr "Pamagat ng pananda." - -#~ msgid "URL to bookmark." -#~ msgstr "URL na tatandaan." - -#~ msgctxt "LABEL" -#~ msgid "Description" -#~ msgstr "Paglalarawan" - -#~ msgid "Description of the URL." -#~ msgstr "Paglalarawan ng URL." diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index 5e08dee466..110af284d3 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:56:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:24+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -272,16 +272,3 @@ msgstr "Закладку збережено" #, php-format msgid "Getting backup from file \"%s\"." msgstr "Отримання резервної копії файлу «%s»." - -#~ msgid "Title of the bookmark." -#~ msgstr "Заголовок закладки." - -#~ msgid "URL to bookmark." -#~ msgstr "URL-адреса закладки." - -#~ msgctxt "LABEL" -#~ msgid "Description" -#~ msgstr "Опис" - -#~ msgid "Description of the URL." -#~ msgstr "Опис URL-адреси." diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 0897265a13..1f092f1b5c 100644 --- a/plugins/CacheLog/locale/CacheLog.pot +++ b/plugins/CacheLog/locale/CacheLog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po index a912059b7d..34b2fbc227 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:23+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po index 1079a8f35c..0c37637360 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:23+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index a11e4f21e4..c9d0155e57 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a1ebbb1e6b..370ba36184 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index 69e0ab2902..4686402f4d 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index 156d0b74e2..ff71b5c06c 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 314a2233bb..6919fcbac5 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index 2fb85a734f..efc82597c0 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index 547977cb6f..7a1c2b921a 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a359e30d01..9fe1e2e739 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 96d1565397..0b4c3b8139 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 9567377765..7af2730889 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 49a1b5389c..3efc57da4b 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 074b797962..2bc905152f 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:24+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 41e0dc79a5..1505b73d6d 100644 --- a/plugins/CasAuthentication/locale/CasAuthentication.pot +++ b/plugins/CasAuthentication/locale/CasAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po index f8641539c0..8c74f7feca 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:25+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po index 9eea59d143..44f3e441c3 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:25+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index 5bf77a61b1..3a21ce3ed7 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index a9bdd89f8f..ad184e8c0e 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:25+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 3c6c466f77..5de04e3ea6 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:25+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ae4fc788f9..a6030671da 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c8a53e87a2..a13ad99f29 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 841b28097a..4dd3f25141 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:25+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ae7cae6497..cbd3826a8d 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:25+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po index 129fd3f9f6..b529bb595b 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po index 3333e5274e..1795c912ad 100644 --- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" @@ -55,6 +55,9 @@ msgid "" "The CAS Authentication plugin allows for StatusNet to handle authentication " "through CAS (Central Authentication Service)." msgstr "" +"Nagpapahintulot ang pampasak na Pagpapatunay ng CAS para mapanghawakan ng " +"StatusNet ang pagpapatunay sa pamamagitan ng Lunduyan ng Palingkuran ng " +"Pagpapatunay (Central Authentication Service o CAS)." #. TRANS: Client error displayed when trying to log in while already logged on. msgid "Already logged in." diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 002adc6168..2fcff78368 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 bab7dbeb24..d79e7a698f 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:44+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 56a983cc63..d9cdf40f32 100644 --- a/plugins/ClientSideShorten/locale/ClientSideShorten.pot +++ b/plugins/ClientSideShorten/locale/ClientSideShorten.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po index e24e329388..23453e92ed 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index 7546c4c5d8..d600b208b8 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index 8431755eec..a53fa6f063 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index 4664cd3881..33d7557497 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index 1741c826fa..29f8bfc3d3 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index 1004f9ab65..f38e8f140f 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index c93fcbcc18..3b637a2602 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index d49dfae59e..9f958f45e1 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 4e9419a9d6..55cc2ebf79 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 29781c2fa3..d836090b47 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po index f957a0e834..38f9b1a52e 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index c54b3b8a5a..79584fe85f 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3d2a0e8358..bb89599efa 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ee0d513fda..c7cdec0c8f 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:45+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 b14931d7be..26f671c844 100644 --- a/plugins/Comet/locale/Comet.pot +++ b/plugins/Comet/locale/Comet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index 0b5fa61c84..f82952cc15 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 d2e07f264d..4fa97f246a 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 725cff30f2..6ecbd50b20 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po index 43a1c26982..6cf39e4a7d 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index 7a52621eda..009d23f488 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c49980299c..00296c5fe1 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 6f0b28b23c..11c278fc47 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po index b47f956cde..d69d2f0e44 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po index 111028f659..bc86af1359 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index 4acdba31f8..219d986e6e 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index 5bb6f32453..5b25397607 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po index 74544bd611..58c1719585 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index da6bfa1733..3a0576d0df 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index 174a108cca..ce36db8f97 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 385623e169..dbdaa5bcfd 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index 5d2ce04c87..9cffb318da 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index 6545e7b26a..11dfcb5ff3 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c43bf8ed5b..6798c1c555 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3cffa35de7..90dbd57730 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 4179760b82..15c85c3faf 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c604aa6c3e..51b50d53e6 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po index d90d41558e..b1162a6602 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index 494508803a..eaab3f1a4a 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:06+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 358cc42af6..9232bdaa14 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:06+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 736ae2707f..04a14143e3 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:06+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 aff714a110..723bc224ae 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:06+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:29+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:24:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/Directory/locale/Directory.pot b/plugins/Directory/locale/Directory.pot index a32d86721a..3d9d20e61d 100644 --- a/plugins/Directory/locale/Directory.pot +++ b/plugins/Directory/locale/Directory.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po index 50b2af87c9..0a905fc717 100644 --- a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:23+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:30+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -63,26 +63,25 @@ msgid "No results." msgstr "No hi ha cap resultat." #. TRANS: Title for group directory page. %d is a page number. -#, fuzzy, php-format +#, php-format msgid "Group Directory, page %d" -msgstr "Directori d'usuari — %s, pàgina %d" +msgstr "Directori de grup, pàgina %d" #. TRANS: Title for group directory page. -#, fuzzy msgid "Group directory" -msgstr "Directori d'usuari" +msgstr "Directori de grup" #. TRANS: Title for group directory page when it is filtered. #. TRANS: %s is the filter string. -#, fuzzy, php-format +#, php-format msgid "Group directory - %s" -msgstr "Directori d'usuari — %s" +msgstr "Directori de grup — %s" #. TRANS: Title for group directory page when it is filtered. #. TRANS: %1$s is the filter string, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Group directory - %1$s, page %2$d" -msgstr "Directori d'usuari — %s, pàgina %d" +msgstr "Directori de grup — %1$s, pàgina %2$d" #. TRANS: Page instructions. msgid "" @@ -98,15 +97,14 @@ msgid "Create a new group" msgstr "" #. TRANS: Fieldset legend. -#, fuzzy msgid "Search groups" -msgstr "Cerca al lloc" +msgstr "Cerca als grups" #. TRANS: Empty list message for searching group directory. #. TRANS: %s is the search string. -#, fuzzy, php-format +#, php-format msgid "No groups starting with %s." -msgstr "No hi ha cap usuari que comenci amb %s" +msgstr "No hi ha cap grup que comenci amb %s." #. TRANS: Help text for searching group directory. msgid "" @@ -117,15 +115,13 @@ msgid "" msgstr "" #. TRANS: Menu item text for user directory. -#, fuzzy msgctxt "MENU" msgid "Directory" msgstr "Directori" #. TRANS: Menu item title for user directory. -#, fuzzy msgid "User Directory." -msgstr "Directori d'usuari" +msgstr "Directori d'usuari." #. TRANS: Plugin description. msgid "Add a user directory." @@ -141,4 +137,4 @@ msgstr "S'ha creat" #. TRANS: Column header in table for members of a group. msgid "Members" -msgstr "" +msgstr "Membres" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index e3a6a9aee7..6b79f3a8a6 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:23+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:30+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index f1e3454ee0..cbb1b324d1 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:23+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:30+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -65,26 +65,25 @@ msgid "No results." msgstr "Нема резултати." #. TRANS: Title for group directory page. %d is a page number. -#, fuzzy, php-format +#, php-format msgid "Group Directory, page %d" -msgstr "Кориснички именик, стр. %d" +msgstr "Именик на групи, страница %d" #. TRANS: Title for group directory page. -#, fuzzy msgid "Group directory" -msgstr "Кориснички именик" +msgstr "Именик на групи" #. TRANS: Title for group directory page when it is filtered. #. TRANS: %s is the filter string. -#, fuzzy, php-format +#, php-format msgid "Group directory - %s" -msgstr "Кориснички именик - %s" +msgstr "Именик на групи - %s" #. TRANS: Title for group directory page when it is filtered. #. TRANS: %1$s is the filter string, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Group directory - %1$s, page %2$d" -msgstr "Кориснички именик - %s, стр. %d" +msgstr "Именик на групи - %1$s, страница %2$d" #. TRANS: Page instructions. msgid "" @@ -94,21 +93,28 @@ msgid "" "Browse groups, or search for groups on by their name, location or topic.\n" "Separate the terms by spaces; they must be three characters or more.\n" msgstr "" +"Откако ќе се зачлените во групата ќе можете да им испраќате пораки на сите " +"други членови\n" +"користејќи ја синтаксата „!groupname“.\n" +"\n" +"Групите можете да ги прелистувате или да ги пребарувате по име, место или " +"тема.\n" +"Одделете ги поимите со празни места. Секој поим мора да содржи барем три " +"знака.\n" #. TRANS: Link to create a new group on the group list page. msgid "Create a new group" -msgstr "" +msgstr "Создај нова група" #. TRANS: Fieldset legend. -#, fuzzy msgid "Search groups" -msgstr "Пребарај" +msgstr "Пребарај групи" #. TRANS: Empty list message for searching group directory. #. TRANS: %s is the search string. -#, fuzzy, php-format +#, php-format msgid "No groups starting with %s." -msgstr "Нема корисници што почнуваат на %s" +msgstr "Нема групи што почнуваат на %s." #. TRANS: Help text for searching group directory. msgid "" @@ -117,6 +123,10 @@ msgid "" "* Try more general keywords.\n" "* Try fewer keywords." msgstr "" +"* Проверете дали сите зборови се напишани како што треба.\n" +"* Обидете се со други клучни зборови.\n" +"* Обидете се со поопшти клучни зборови.\n" +"* Обидете се помалку клучни зборови.\n" #. TRANS: Menu item text for user directory. msgctxt "MENU" @@ -141,4 +151,4 @@ msgstr "Создадено" #. TRANS: Column header in table for members of a group. msgid "Members" -msgstr "" +msgstr "Членови" diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index 9c801f9263..84625434f3 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:23+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -67,26 +67,25 @@ msgid "No results." msgstr "Geen resultaten." #. TRANS: Title for group directory page. %d is a page number. -#, fuzzy, php-format +#, php-format msgid "Group Directory, page %d" msgstr "Gebruikerslijst, pagina %d" #. TRANS: Title for group directory page. -#, fuzzy msgid "Group directory" msgstr "Gebruikerslijst" #. TRANS: Title for group directory page when it is filtered. #. TRANS: %s is the filter string. -#, fuzzy, php-format +#, php-format msgid "Group directory - %s" msgstr "Gebruikerslijst - %s" #. TRANS: Title for group directory page when it is filtered. #. TRANS: %1$s is the filter string, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Group directory - %1$s, page %2$d" -msgstr "Gebruikerslijst - %s, pagina %d" +msgstr "Gebruikerslijst - %1$s, pagina %2$d" #. TRANS: Page instructions. msgid "" @@ -96,21 +95,27 @@ msgid "" "Browse groups, or search for groups on by their name, location or topic.\n" "Separate the terms by spaces; they must be three characters or more.\n" msgstr "" +"Nadat u lid bent geworden van een groep kunt u berichten naar de groep " +"zenden door \"\"!groepsnaam\" te gebruiken in uw bericht.\n" +"\n" +"Blader door groepen or zoek naar groepen op basis van hun naam, locatie of " +"onderwerp.\n" +"Scheid trefwoorden met spaties; trefwoorden moeten bestaat uit drie of meer " +"tekens.\n" #. TRANS: Link to create a new group on the group list page. msgid "Create a new group" -msgstr "" +msgstr "Nieuwe groep maken" #. TRANS: Fieldset legend. -#, fuzzy msgid "Search groups" -msgstr "Site doorzoeken" +msgstr "Groepen doorzoeken" #. TRANS: Empty list message for searching group directory. #. TRANS: %s is the search string. -#, fuzzy, php-format +#, php-format msgid "No groups starting with %s." -msgstr "Er zijn geen gebruikers wiens naam begint met \"%s\"" +msgstr "Er zijn geen groepsnamen die beginnen met \"%s\"." #. TRANS: Help text for searching group directory. msgid "" @@ -119,6 +124,10 @@ msgid "" "* Try more general keywords.\n" "* Try fewer keywords." msgstr "" +"* Zorg ervoor dat alle woorden correct zijn gespeld.\n" +"* Gebruik verschillende trefwoorden.\n" +"* Gebruik meer algemene trefwoorden.\n" +"* Gebruik minder zoekwoorden." #. TRANS: Menu item text for user directory. msgctxt "MENU" @@ -143,4 +152,4 @@ msgstr "Aangemaakt" #. TRANS: Column header in table for members of a group. msgid "Members" -msgstr "" +msgstr "Leden" diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index 023adb4a0a..6de5b35b67 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:23+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -41,6 +41,9 @@ 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 "" +"Maghanap ng mga tao sa %%site.name%% sa pamamagitan ng kanilang pangalan, " +"kinalalagyan, o kinahihiligan. Paghiwa-hiwalayin ang mga kataga sa " +"pamamagitan ng mga puwang; dapat silang 3 mga panitik o mahigit pa." msgid "Search site" msgstr "Hanapin sa sityo" @@ -63,26 +66,25 @@ msgid "No results." msgstr "Walang mga kinalabasan." #. TRANS: Title for group directory page. %d is a page number. -#, fuzzy, php-format +#, php-format msgid "Group Directory, page %d" -msgstr "Direktoryo ng Tagagamit, pahina %d" +msgstr "Direktoryo ng Pangkat, pahina %d" #. TRANS: Title for group directory page. -#, fuzzy msgid "Group directory" -msgstr "Direktoryo ng tagagamit" +msgstr "Direktoryo ng pangkat" #. TRANS: Title for group directory page when it is filtered. #. TRANS: %s is the filter string. -#, fuzzy, php-format +#, php-format msgid "Group directory - %s" -msgstr "Direktoryo ng tagagamit - %s" +msgstr "Direktoryo ng pangkat - %s" #. TRANS: Title for group directory page when it is filtered. #. TRANS: %1$s is the filter string, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Group directory - %1$s, page %2$d" -msgstr "Direktoryo ng tagagamit - %s, pahina %d" +msgstr "Direktoryo ng pangkat - %1$s, pahina %2$d" #. TRANS: Page instructions. msgid "" @@ -92,21 +94,28 @@ msgid "" "Browse groups, or search for groups on by their name, location or topic.\n" "Separate the terms by spaces; they must be three characters or more.\n" msgstr "" +"Pagkaraan mong sumali sa isang pangkat makapagpapadala ka ng mensahe sa " +"lahat ng iba pang mga kasapi \n" +"na ginagamit ang palaugnayang \"!pangalan ng pangkat\".\n" +"\n" +"Tumingin-tingin ng mga pangkat, o maghanap ng mga pangkat sa pamamagitan ng " +"kanilang pangalan, kinalalagyan o paksa.\n" +"Paghiwa-hiwalayin ang mga kataga sa pamamagitan ng mga puwang; dapat silang " +"may tatlong mga panitik o mahigit pa." #. TRANS: Link to create a new group on the group list page. msgid "Create a new group" -msgstr "" +msgstr "Lumikha ng isang bagong pangkat" #. TRANS: Fieldset legend. -#, fuzzy msgid "Search groups" -msgstr "Hanapin sa sityo" +msgstr "Hanapin sa mga pangkat" #. TRANS: Empty list message for searching group directory. #. TRANS: %s is the search string. -#, fuzzy, php-format +#, php-format msgid "No groups starting with %s." -msgstr "Walang mga tagagamit na nagsisimula sa %s" +msgstr "Walang mga pangkat na nagsisimula sa %s." #. TRANS: Help text for searching group directory. msgid "" @@ -115,6 +124,10 @@ msgid "" "* Try more general keywords.\n" "* Try fewer keywords." msgstr "" +"* Tiyakin na tama ang pagbabanghay ng lahat ng mga salita.\n" +"* Sumubok ng ibang mga susing-salita.\n" +"* Sumubok ng mas pangkalahatang mga susing-salita.\n" +"* Sumubok ng mas kakaunting mga susing-salita.\n" #. TRANS: Menu item text for user directory. msgctxt "MENU" @@ -139,4 +152,4 @@ msgstr "Nalikha na" #. TRANS: Column header in table for members of a group. msgid "Members" -msgstr "" +msgstr "Mga kasapi" diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index 5e9b5f846c..d56118358e 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:23+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:46+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:29+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index 9c6ab186ea..29855c5763 100644 --- a/plugins/DiskCache/locale/DiskCache.pot +++ b/plugins/DiskCache/locale/DiskCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po index 03f061d0e8..91805cad86 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:07+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index 9b958e5aed..f8dfb22e94 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:07+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po index 579397a8f2..6069ef9c2a 100644 --- a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index e1e8957d5b..b1f9eda288 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index 488b34b7e2..feb615450a 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index edc432cf57..4cb608c046 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index 3836d42c4b..bbc15222d8 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 9043ae915a..576c747f2e 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index b89eedf26d..53b230efc7 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index a79f907a39..2457d2f180 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index dd10da1b8c..89e6355dde 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index ede2138438..5c4b472b56 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index 2913dd000a..493b78febc 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:31+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index 4dcf3fa537..929039fc5a 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index 1706325dda..3b562ddec3 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index 7939b1cbee..cadc1c32aa 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index b956a90080..56e1b419b3 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 96af1cd123..f416620144 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index 0152fccd28..73494c908e 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 18:58:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 18db5dea68..485983fbd4 100644 --- a/plugins/Disqus/locale/Disqus.pot +++ b/plugins/Disqus/locale/Disqus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po index 1ce65fb153..0f6f0fa41b 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index d32034d6a9..6f6e0a6603 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index 6371065760..b88a49b0b2 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index 18a399a03d..dd75acb727 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:32+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index b513a30a99..8edcaae1ca 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index 9efe9f8155..22c58947c9 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index eff9bc1096..19c9c00507 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index 5d10446f59..c51d4938cd 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index 90e402b202..98fe2c98db 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index 58da4e18b9..6989908782 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index 797077f64b..df78f4538f 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index e70d9c5b3e..51a53f959d 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index 50d0d84072..c91f9330e5 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index 742f40ec73..6a479ee681 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/DomainWhitelist/locale/DomainWhitelist.pot b/plugins/DomainWhitelist/locale/DomainWhitelist.pot index eb3d8d670f..554539fc7b 100644 --- a/plugins/DomainWhitelist/locale/DomainWhitelist.pot +++ b/plugins/DomainWhitelist/locale/DomainWhitelist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po index 0c0592dd9a..d1f0d73cb4 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 22:43:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po index e4d832e247..c315365820 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-16 22:43:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/te/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/te/LC_MESSAGES/DomainWhitelist.po new file mode 100644 index 0000000000..70fd1e2589 --- /dev/null +++ b/plugins/DomainWhitelist/locale/te/LC_MESSAGES/DomainWhitelist.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - DomainWhitelist to Telugu (తెలుగు) +# Exported from translatewiki.net +# +# Author: Veeven +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DomainWhitelist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" +"Language-Team: Telugu \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-16 23:17:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: te\n" +"X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Restrict domains for email users." +msgstr "ఈమెయిలు వాడుకరుల డొమైన్లను నియంత్రిస్తుంది." diff --git a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po new file mode 100644 index 0000000000..b4ba6a0c80 --- /dev/null +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - DomainWhitelist to Tagalog (Tagalog) +# Exported from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DomainWhitelist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:33+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-04-16 23:17:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Restrict domains for email users." +msgstr "Hangganan ang mga nasasakupan sa mga tagagamit ng e-liham." diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index 1b3d046f79..2afa10b97e 100644 --- a/plugins/Echo/locale/Echo.pot +++ b/plugins/Echo/locale/Echo.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po index f829cb0f3e..2e08419cc3 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index 1da09b77a0..262ed2b7da 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index f38963807b..8499ac3b56 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index 532d3e918a..a73de99bf5 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index 042769da98..d6fd8255bc 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index d4f9ff3e7a..183f43e020 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index a349c7de1c..8456e67f11 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index a93879a136..8f6327abe3 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index b4b0649d20..907df29289 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 515ff87cf3..c7b95277c8 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index dbde3c3599..1e169d81b9 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index dc371e2fe9..c3a3c552cb 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c4602d2028..4b3912ba5d 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f785ef5ea1..30698586ee 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index cc897d0263..439220d59e 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index 11bc0b8436..18e8283505 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:34+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index f378263105..e83b219aee 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 b6b0dc50e4..dcae1d06ec 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c79172ccc7..491f058277 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 2130575490..79a0726c79 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:06:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 dc85708986..69d006c9b7 100644 --- a/plugins/EmailAuthentication/locale/EmailAuthentication.pot +++ b/plugins/EmailAuthentication/locale/EmailAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po index 7808b006a1..4bcef36e1c 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index 709871cb27..d7f95f8cda 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index f79269cdce..31f11800ca 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index dd655a66be..ac1b22e4eb 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index d4b2ffa9b3..f016053f37 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index 886c2d0f7b..c4b26e1ede 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index 317060219c..2fbf0f7e77 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index 13358faec9..6f356b04b8 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index 1207bad70c..aceb473124 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index 2c162023a1..e996dfcce7 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index 5e7db97ca6..9f892a8890 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 858fbe6e00..25dfb09a29 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8840689e2a..d499abe3fa 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20: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: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 299e73615a..997997c4e1 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6069241ad3..bc44c5c042 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:36+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index 1045da8d16..c16979dbeb 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:36+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index ad91e4de3b..a2c15b5115 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:36+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e8ea491535..cd2362d052 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6fbda76710..1cef3efb6b 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 29605c2a01..059f80d609 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20: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: 2011-03-24 15:25:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailSummary/locale/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index bc9f65638b..17ee8a1144 100644 --- a/plugins/EmailSummary/locale/EmailSummary.pot +++ b/plugins/EmailSummary/locale/EmailSummary.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-10 08:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po index 3eab3b5577..851eb1e392 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:37+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" @@ -42,6 +42,5 @@ msgid "Send an email summary of the inbox to users." msgstr "Envia un resum de correu a la safata d'entrada dels usuaris." #. TRANS: Checkbox label in e-mail preferences form. -#, fuzzy msgid "Send me a periodic summary of updates from my network" -msgstr "Envia'm un resum periòdic d'actualitzacions de la meva xarxa." +msgstr "Envia'm un resum periòdic d'actualitzacions de la meva xarxa" diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index c9c039f41e..59ae21e799 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po index 4c85a55df6..bb2c57f521 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index e049b552b3..70b741131f 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po index e3e59908ef..d8f6bf98d5 100644 --- a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" @@ -42,7 +42,10 @@ msgstr "Mga pagsasapanahon mula sa lambatan mo" #. TRANS: Plugin description. msgid "Send an email summary of the inbox to users." msgstr "" +"Magpadala sa mga tagagamit ng isang buod mula sa e-liham ng kahong-tanggapan." #. TRANS: Checkbox label in e-mail preferences form. msgid "Send me a periodic summary of updates from my network" msgstr "" +"Padalhan ako ng isang pana-panahong mga buod ng mga pagsasapanahon mula sa " +"lambatan ko" diff --git a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po index 7fa4e0aca3..722ae9f464 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index 7fce475c1e..3dfa287ff9 100644 --- a/plugins/Event/locale/Event.pot +++ b/plugins/Event/locale/Event.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index adac4e4ce0..cbded2061b 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:17+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:41+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/ca/LC_MESSAGES/Event.po b/plugins/Event/locale/ca/LC_MESSAGES/Event.po index ea9f5d3ae5..baebfe41a1 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:17+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:41+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 9c1e4718bd..00a4c27095 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:18+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index f5c10520cb..b7a36c7ce6 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:18+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index 279c609d83..4701f507e1 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:18+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:42+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index 4dd4068687..a2228abb49 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:18+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index c9cb8b2f7e..8a664487ab 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:18+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index 26890821e5..e8da960318 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:18+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:14:48+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-event\n" diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index 742193b053..e4d52a51dc 100644 --- a/plugins/ExtendedProfile/locale/ExtendedProfile.pot +++ b/plugins/ExtendedProfile/locale/ExtendedProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index 58fd91e40f..b137fad2d8 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:21+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:45+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index f2765abc81..a865c14dcc 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:21+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index f8afeb62f7..5adb823beb 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:21+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:45+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index 55110ad763..a1fa85f5b6 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:21+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:45+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index 20189bda45..11024b24af 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:21+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:45+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po index b26c058e11..7ae6ca0f38 100644 --- a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:22+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:45+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index 230796ce16..2b2ee72acb 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:22+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:45+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index e553566af8..d76d9fd8a1 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:22+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:46+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/FacebookBridge/locale/FacebookBridge.pot b/plugins/FacebookBridge/locale/FacebookBridge.pot index ca7f58fb05..979292fbfe 100644 --- a/plugins/FacebookBridge/locale/FacebookBridge.pot +++ b/plugins/FacebookBridge/locale/FacebookBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index dbfc87b395..dbe7419e37 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:25+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:49+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 3b27fa1c6a..97f61404aa 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:50+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -35,12 +35,10 @@ msgid "Login with Facebook" msgstr "Inicia una sessió amb el Facebook" #. TRANS: Title for "Login with Facebook" image. -#, fuzzy msgid "Login with Facebook." -msgstr "Inicia una sessió amb el Facebook" +msgstr "Inicia una sessió amb el Facebook." #. TRANS: Title for Facebook administration panel. -#, fuzzy msgctxt "TITLE" msgid "Facebook integration settings" msgstr "Paràmetres d'integració del Facebook" @@ -95,7 +93,6 @@ msgid "There was a problem with your session token. Try again, please." msgstr "S'ha produït un problema amb el testimoni de sessió. Proveu-ho de nou." #. TRANS: Page title for Facebook settings. -#, fuzzy msgctxt "TITLE" msgid "Facebook settings" msgstr "Paràmetres del Facebook" @@ -287,19 +284,16 @@ msgid "Facebook" msgstr "Facebook" #. TRANS: Menu title for "Facebook" login. -#, fuzzy msgid "Login or register using Facebook." -msgstr "Inicieu-hi una sessió o registreu-vos-hi des del Facebook" +msgstr "Inicieu-hi una sessió o registreu-vos-hi des del Facebook." #. TRANS: Menu title for "Facebook" in administration panel. -#, fuzzy msgid "Facebook integration configuration." -msgstr "Configuració de la integració del Facebook" +msgstr "Configuració de la integració del Facebook." #. TRANS: Menu title for "Facebook" in user settings. -#, fuzzy msgid "Facebook settings." -msgstr "Paràmetres del Facebook" +msgstr "Paràmetres del Facebook." #. TRANS: Plugin description. msgid "A plugin for integrating StatusNet with Facebook." diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index a20a1a8d51..bd3af9b94f 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:50+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index c2ae882b54..78a9c9ca8c 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index e463f7994b..59400d5852 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index 783567fcb1..b026b32a97 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po index 4c885d9179..adc03de430 100644 --- a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:50+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -124,6 +124,8 @@ msgid "" "Disconnecting your Faceboook would make it impossible to log in! Please [set " "a password](%s) first." msgstr "" +"Ang pagtanggal ng ugnay ng Facebook mo ay makapagdurulot ng hindi makalagda! " +"Mangyaring [magtakda muna ng isang hudyat](%s)." #. TRANS: Message displayed when initiating disconnect of a StatusNet user #. TRANS: from a Facebook account. %1$s is the StatusNet site name. @@ -132,6 +134,8 @@ msgid "" "Keep your %1$s account but disconnect from Facebook. You'll use your %1$s " "password to log in." msgstr "" +"Panatilihin ang akawnt mong %1$s subalit kumalas mula sa Facebook. Maaari " +"mong gamitin ang hudyat mo sa %1$s upang lumagdang papasok." #. TRANS: Submit button. msgctxt "BUTTON" @@ -140,7 +144,7 @@ msgstr "Huwag umugnay" #. TRANS: Notice in case saving of synchronisation preferences fail. msgid "There was a problem saving your sync preferences." -msgstr "" +msgstr "Nagkaroon ng isang suliranin sa pagsagip ng mga nais mo sa pagsasabay." #. TRANS: Confirmation that synchronisation settings have been saved into the system. msgid "Sync preferences saved." @@ -158,11 +162,15 @@ msgstr "Kumalas ka na mula sa Facebook." msgid "" "You must be logged into Facebook to register a local account using Facebook." msgstr "" +"Dapat na nakalagda ka sa Facebook upang makapagpatala ng isang katutubong " +"akawnt na ginagamit ang Facebook." #. TRANS: Client error displayed when trying to connect to a Facebook account that is already linked #. TRANS: in the same StatusNet site. msgid "There is already a local account linked with that Facebook account." msgstr "" +"Mayroon nang isang katutubong akawnt na nakakawing sa ganyang akawnt ng " +"Facebook." #. TRANS: Form validation error displayed when user has not agreed to the license. msgid "You cannot register if you do not agree to the license." @@ -180,6 +188,10 @@ msgid "" "Facebook to a local account. You can either create a new local account, or " "connect with an existing local account." msgstr "" +"Ito ang iyong unang pagkakataon ng paglagda sa %s kaya't kailangan naming " +"iugnay ang iyong Facebook papunta sa isang katutubong akawnt. Maaari kang " +"lumikha ng isang bagong katutubong akawnt, o umugnay sa pamamagitan ng " +"umiiral na katutubong akawnt." #. TRANS: Page title. msgid "Facebook Setup" @@ -195,6 +207,9 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +"Makukuha ang teksto at mga talaksan ko sa ilalim ng %s maliban na lamang ang " +"pribadong datong ito: hudyat, tirahan ng e-liham, tirahan ng IM, at numero " +"ng telepono." #. TRANS: Fieldset legend. msgid "Create new account" @@ -211,6 +226,8 @@ msgstr "Bagong palayaw" #. TRANS: Field title. 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: Submit button to create a new account. msgctxt "BUTTON" @@ -226,6 +243,8 @@ 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. msgid "Existing nickname" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index e0e7cb9cd2..d4ec648bff 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:14:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index 646db4b121..b86e29e91a 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20: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: 2011-04-11 13:14:51+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:43+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 86f70be839..1c57fd38ac 100644 --- a/plugins/FirePHP/locale/FirePHP.pot +++ b/plugins/FirePHP/locale/FirePHP.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index af3e64f1fc..28d5b13423 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index 01860b358f..0d3fb74063 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index 23de04250c..621d3cf34f 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 1ef222432b..3691cc6a54 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index 4fd83ab532..684f319b2a 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index ffc29a8b39..dd596e5e79 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index 7188277570..dcff0ee828 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index 7e077e4649..6afbd0bd80 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6f6c1811ba..1380033338 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c014f06359..e27df6b048 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20: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: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 4d2b50f3b0..e29d266fd4 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a05556e564..32c51fe2ac 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 563d1a70f4..e3378ab3f6 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 4d7ec60695..0d4e83b957 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 67088eff74..c17fae9377 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index ce7d88c49d..55e348664a 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:51+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FollowEveryone/locale/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot index bbfc5cca0d..925fee44d0 100644 --- a/plugins/FollowEveryone/locale/FollowEveryone.pot +++ b/plugins/FollowEveryone/locale/FollowEveryone.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index 20a2d780db..3513f70680 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index c8d5552236..6c72eae68b 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index aba60e0823..318aa203ac 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index 86371c09dd..adef91aa65 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index 01b3d7b45b..af9757c9ec 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index ed6b093bb6..84db7cf814 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index 189ce197df..27238d3cb1 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index 3b9b3fc356..729ca0400f 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po index 1137b9b8e8..f7298e207e 100644 --- a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index 2fefd26db6..ec5ec41fb3 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index ffa1c17b3a..c1a99bce7b 100644 --- a/plugins/ForceGroup/locale/ForceGroup.pot +++ b/plugins/ForceGroup/locale/ForceGroup.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po index 16dffc0797..2b552b78b3 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index 39a8fe7cdb..4e82bfc42b 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 6fd31644ef..ae6a2a4324 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index ae52dbd012..a10d45e995 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index 70137a7e49..136fffe4c5 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index 3299eafda1..8557456974 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 0a7df20beb..6df03dfecc 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index 48c7b1182e..44d788c377 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index 5743f7fab7..6a2c7d9f6b 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index b3532c7925..9679406e09 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index 5286d8f33d..d1f23b6b43 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index 2d10fbd6c7..e93ff08b90 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index 9cccada68e..d32450818e 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:53+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 2b71a685df..4102454aff 100644 --- a/plugins/GeoURL/locale/GeoURL.pot +++ b/plugins/GeoURL/locale/GeoURL.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po index eee0c8acaa..c225a22b47 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:54+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index 14bd7d36d4..9c81c4a294 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:54+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index 5db89e0383..b64cbe62d5 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index 6db159c6d9..7deb7663b7 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index cb2c51f82d..ffa4921bc8 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index 6772a0b686..a205a034e5 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index acb6cb21f2..4c4cc484c2 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index 7b5f90aca3..db025c225c 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index 63c2a67dcf..68beb9827d 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 90f660d4d5..4bd74f935e 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index 37855096b3..25de557cab 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20: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: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index a6ffbdc5ee..0b38805aec 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index 479bb176c2..d948da03e6 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index 500f20cc42..2a32fc183d 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index 06eda617fe..fe099e4a19 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po index 48ef995e18..f086e42ba8 100644 --- a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index cf27e4b6ef..7e17180681 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 bcc6ca99c8..88cd177270 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:46+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 03053f7a6d..fd578cae2d 100644 --- a/plugins/Geonames/locale/Geonames.pot +++ b/plugins/Geonames/locale/Geonames.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index 6fe9570636..563e5aefff 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 181201cb0c..9b3ffce97a 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index e472abc506..533570198c 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po index ec51235854..a4337cd379 100644 --- a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:54+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index 146ec193cb..cdfe7235f3 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:54+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 4768b0bafb..7be63c73f6 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:44+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index b706c37575..9b8326f17c 100644 --- a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot +++ b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po index d6170fa90c..90af2ebbea 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index 6a8b082f30..1709137d25 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index d4db054175..422ea576be 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index 14edc81efe..c44cbeac99 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index d8b247a4eb..503fa1ac33 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 4801b46965..865198abde 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index d464ddef30..3400a09401 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 3269c2c15f..c07cc60320 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index fa6e21fce3..53f70a15f7 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 1a87dd8494..aaee73772f 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20: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: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a2a8c7e23b..84765ceac1 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index e3548cc56a..8cf99522cd 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index 3a99d209b9..b9a0e4e27e 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index b304949f54..364f757f64 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e8659f1aa8..122435a120 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3527ff562a..8b7f09c334 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e600a0e6cf..4c9868bf35 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:56+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:04+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a436877969..8ae8e0230f 100644 --- a/plugins/Gravatar/locale/Gravatar.pot +++ b/plugins/Gravatar/locale/Gravatar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po index a5fa3e97c4..8910ca6739 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -28,41 +28,3 @@ msgid "" msgstr "" "El connector del Gravatar permet als usuaris fer servir llur Gravatar amb l'StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Defineix un Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "" -#~ "Si voleu utilitzar la vostra imatge del Gravatar, feu clic a «Afegeix»." - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Afegeix" - -#~ msgid "Remove Gravatar" -#~ msgstr "Suprimeix el Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "" -#~ "Si voleu suprimir la vostra imatge del Gravatar, feu clic a «Suprimeix»." - -#~ msgid "Remove" -#~ msgstr "Suprimeix" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "" -#~ "Per fer servir un Gravatar, primer introduïu una adreça electrònica." - -#~ msgid "You do not have an email address set in your profile." -#~ msgstr "No teniu una adreça electrònica definida en el vostre perfil." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "No s'ha pogut desar el Gravatar a la base de dades." - -#~ msgid "Gravatar added." -#~ msgstr "S'ha afegit el Gravatar." - -#~ msgid "Gravatar removed." -#~ msgstr "S'ha suprimit el Gravatar." diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index ee09aeecfd..b9fdf58522 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -29,41 +29,3 @@ msgid "" msgstr "" "Das Gravatar-Plugin erlaubt es Benutzern, ihr Gravatar mit StatusNet zu verwenden." - -#~ msgid "Set Gravatar" -#~ msgstr "Gravatar einstellen" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "" -#~ "Falls du dein Gravatar-Bild verwenden willst, klicke auf „Hinzufügen“." - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Hinzufügen" - -#~ msgid "Remove Gravatar" -#~ msgstr "Gravatar löschen" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "" -#~ "Falls du dein Gravatar-Bild entfernen willst, klicke auf „Entfernen“." - -#~ msgid "Remove" -#~ msgstr "Entfernen" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "" -#~ "Um einen Gravatar zu verwenden, gib zunächst eine E-Mail-Adresse ein." - -#~ msgid "You do not have an email address set in your profile." -#~ msgstr "Du hast keine E-Mail-Adresse in deinem Profil eingetragen." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Konnte Gravatar nicht in der Datenbank speichern." - -#~ msgid "Gravatar added." -#~ msgstr "Gravatar hinzugefügt." - -#~ msgid "Gravatar removed." -#~ msgstr "Gravatar entfernt." diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index 4415b5fb60..891f59e804 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -29,41 +29,3 @@ msgid "" msgstr "" "La extensión Gravatar permite a los usuarios utilizar su Gravatar con StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Definir un Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "Si deseas utilizar tu imagen Gravatar, haz clic en \"Agregar\"" - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Añadir" - -#~ msgid "Remove Gravatar" -#~ msgstr "Eliminar el Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "Si desesa eliminar tu imagen de Gravatar, haz clic en \"Eliminar\"." - -#~ msgid "Remove" -#~ msgstr "Borrar" - -#~ 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." - -#~ 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." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Error al guardar Gravatar en la base de datos." - -#~ msgid "Gravatar added." -#~ msgstr "Gravatar agregado." - -#~ msgid "Gravatar removed." -#~ msgstr "Gravatar eliminado." diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index bb898a11c1..a717d6c932 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -28,42 +28,3 @@ msgid "" msgstr "" "Le greffon Gravatar permet aux utilisateurs d’utiliser leur image Gravatar avec StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Définir un Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "" -#~ "Si vous souhaitez utiliser votre image Gravatar, cliquez sur « Ajouter »." - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Ajouter" - -#~ msgid "Remove Gravatar" -#~ msgstr "Supprimer le Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "" -#~ "Si vous souhaitez supprimer votre image Gravatar, cliquez sur « Supprimer " -#~ "»." - -#~ msgid "Remove" -#~ msgstr "Enlever" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "" -#~ "Pour utiliser un Gravatar, veuillez d’abord saisir une adresse courriel." - -#~ 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." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Impossible de sauvegarder le Gravatar dans la base de données." - -#~ msgid "Gravatar added." -#~ msgstr "Gravatar ajouté." - -#~ msgid "Gravatar removed." -#~ msgstr "Gravatar supprimé." diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index 4adf25367e..d328871bfa 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -28,37 +28,3 @@ msgid "" msgstr "" "Le plug-in Gravatar permitte al usatores de usar lor Gravatar con StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Stabilir Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "Si tu vole usar tu imagine Gravatar, clicca \"Adder\"." - -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Adder" - -#~ msgid "Remove Gravatar" -#~ msgstr "Remover Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "Si tu vole remover tu imagine Gravatar, clicca \"Remover\"." - -#~ msgid "Remove" -#~ msgstr "Remover" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "Pro usar un Gravatar, entra primo un adresse de e-mail." - -#~ 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." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Falleva de salveguardar le Gravatar in le base de datos." - -#~ msgid "Gravatar added." -#~ msgstr "Gravatar addite." - -#~ msgid "Gravatar removed." -#~ msgstr "Gravatar removite." diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index ded6eb001c..eb5cbff3e1 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -28,40 +28,3 @@ msgid "" msgstr "" "Приклучокот Gravatar им овозможува на корисниците да го користат својот Gravatar со StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Постави Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "" -#~ "Ако сакате да ја користите Вашата слика од Gravatar, кликнете на „Додај“." - -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Додај" - -#~ msgid "Remove Gravatar" -#~ msgstr "Отстрани Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "" -#~ "Ако сакате да ја отстраните Вашата слика од Gravatar, кликнете на " -#~ "„Отстрани“." - -#~ msgid "Remove" -#~ msgstr "Отстрани" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "За да користите Gravatar најпрвин внесете е-пошта." - -#~ msgid "You do not have an email address set in your profile." -#~ msgstr "Во профилот немате назначено е-пошта." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Не успеав да го зачувам Gravatar-от во базата на податоци." - -#~ msgid "Gravatar added." -#~ msgstr "Gravatar-от е додаден." - -#~ msgid "Gravatar removed." -#~ msgstr "Gravatar-от е отстранет." diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index 29d4a39cc9..f8923ca2d6 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -28,39 +28,3 @@ msgid "" msgstr "" "De plug-in Gravatar maak het mogelijk dat gebruikers hun Gravatar gebruiken in StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Gravatar instellen" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "Klik \"Toevoegen\" om uw afbeelding van Gravatar te gebruiken." - -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Toevoegen" - -#~ msgid "Remove Gravatar" -#~ msgstr "Gravatar verwijderen" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "" -#~ "Klik \"Verwijderen\" om uw afbeelding van Gravatar niet langer te " -#~ "gebruiken." - -#~ msgid "Remove" -#~ msgstr "Verwijderen" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "Voer eerst een e-mailadres in om Gravatar te kunnen gebruiken." - -#~ msgid "You do not have an email address set in your profile." -#~ msgstr "U hebt geen e-mailadres ingesteld in uw profiel." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Het was niet mogelijk de Gravatar in the database op te slaan." - -#~ msgid "Gravatar added." -#~ msgstr "De Gravatar is toegevoegd." - -#~ msgid "Gravatar removed." -#~ msgstr "De Gravatar is verwijderd." diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 090ec0fc66..366cb6a552 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -29,38 +29,3 @@ msgid "" msgstr "" "Wtyczka Gravatar umożliwia użytkownikom używanie obrazów Gravatar w StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Ustaw Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "Aby używać obrazu Gravatar, należy nacisnąć przycisk \"Dodaj\"." - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Dodaj" - -#~ msgid "Remove Gravatar" -#~ msgstr "Usuń Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "Aby usunąć obraz Gravatar, należy nacisnąć przycisk \"Usuń\"." - -#~ msgid "Remove" -#~ msgstr "Usuń" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "Aby użyć obrazu Gravatar, należy najpierw podać adres e-mail." - -#~ msgid "You do not have an email address set in your profile." -#~ msgstr "Nie ustawiono adresu e-mail w profilu." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Zapisanie obrazu Gravatar w bzie danych nie powiodło się." - -#~ msgid "Gravatar added." -#~ msgstr "Dodano obraz Gravatar." - -#~ msgid "Gravatar removed." -#~ msgstr "Usunięto obraz Gravatar." diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index dcc40d14e5..a4c3345722 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -28,38 +28,3 @@ msgid "" msgstr "" "O plugin Gravatar permite que os utilizadores usem o seu Gravatar com o StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Definir Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "Se desejar usar a sua imagem Gravatar, clique em \"Adicionar\"." - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Adicionar" - -#~ msgid "Remove Gravatar" -#~ msgstr "Remover Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "Se desejar remover a sua imagem Gravatar, clique em \"Remover\"." - -#~ msgid "Remove" -#~ msgstr "Remover" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "Para usar um Gravatar, primeiro introduza um endereço de email." - -#~ msgid "You do not have an email address set in your profile." -#~ msgstr "Não definiu um endereço de email no seu perfil." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Erro ao guardar o Gravatar na base de dados." - -#~ msgid "Gravatar added." -#~ msgstr "Gravatar adicionado." - -#~ msgid "Gravatar removed." -#~ msgstr "Gravatar removido." diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index cfd380d889..abb7b6d9bf 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -28,41 +28,3 @@ msgid "" msgstr "" "Ang pamasak na Gravatar ay nagpapahintulot sa mga tagagamit na gamitin ang " "kanilang Gravatar na may StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Itakda ang Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "" -#~ "Kung nais mong gamitin ang iyong larawan ng Gravatar, pindutin ang " -#~ "\"Idagdag\"." - -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Magdagdag" - -#~ msgid "Remove Gravatar" -#~ msgstr "Alisin ang Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "" -#~ "Kung nais mong alisin ang larawan mo ng Gravatar, pindutin ang \"Alisin\"." - -#~ msgid "Remove" -#~ msgstr "Alisin" - -#~ 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." - -#~ msgid "You do not have an email address set in your profile." -#~ msgstr "Wala kang tirahan ng e-liham na nakatakda sa iyong balangkas." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Nabigong sagipin ang Gravatar sa iyong kalipunan ng dato." - -#~ msgid "Gravatar added." -#~ msgstr "Idinagdag ang Gravatar." - -#~ msgid "Gravatar removed." -#~ msgstr "Inalis ang Gravatar." diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index 7ccc9452f8..04652d971c 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" @@ -29,39 +29,3 @@ msgid "" msgstr "" "Додаток Gravatar дозволяє користувачам встановлювати аватарки з Gravatar для сайту StatusNet." - -#~ msgid "Set Gravatar" -#~ msgstr "Встановити Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "Якщо ви бажаєте використовувати аватари Gravatar, тисніть «Додати»." - -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "Додати" - -#~ msgid "Remove Gravatar" -#~ msgstr "Видалити Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "" -#~ "Якщо ви бажаєте видалити свою аватару надану Gravatar, тисніть «Видалити»." - -#~ msgid "Remove" -#~ msgstr "Видалити" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "" -#~ "Щоб використовувати Gravatar, спершу введіть адресу електронної пошти." - -#~ msgid "You do not have an email address set in your profile." -#~ msgstr "У вашому профілі не вказано жодної електронної адреси." - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "Не вдалося зберегти Gravatar до бази даних." - -#~ msgid "Gravatar added." -#~ msgstr "Gravatar додано." - -#~ msgid "Gravatar removed." -#~ msgstr "Gravatar вилучено." diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index a7de7c3913..79f3730a8b 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:57+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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" @@ -29,38 +29,3 @@ msgid "" msgstr "" "Gravatar 插件可以让用户在 StatusNet 站点使用自己的 Gravatar。" - -#~ msgid "Set Gravatar" -#~ msgstr "设置 Gravatar" - -#~ msgid "If you want to use your Gravatar image, click \"Add\"." -#~ msgstr "如果你想使用你的 Gravatar 图像,点击“添加”" - -#, fuzzy -#~ msgctxt "BUTTON" -#~ msgid "Add" -#~ msgstr "添加" - -#~ msgid "Remove Gravatar" -#~ msgstr "删除 Gravatar" - -#~ msgid "If you want to remove your Gravatar image, click \"Remove\"." -#~ msgstr "如果你想删除你的 Gravatar 图像,点击“删除”。" - -#~ msgid "Remove" -#~ msgstr "删除" - -#~ msgid "To use a Gravatar first enter in an email address." -#~ msgstr "要使用 Gravatar 先要填写一个 email 地址。" - -#~ msgid "You do not have an email address set in your profile." -#~ msgstr "你的账号没有设置 email 地址。" - -#~ msgid "Failed to save Gravatar to the database." -#~ msgstr "将 Gravatar 保存到数据库失败。" - -#~ msgid "Gravatar added." -#~ msgstr "Gravatar 已添加。" - -#~ msgid "Gravatar removed." -#~ msgstr "Gravatar 已删除。" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index 084fcb5747..70a7cec2d3 100644 --- a/plugins/GroupFavorited/locale/GroupFavorited.pot +++ b/plugins/GroupFavorited/locale/GroupFavorited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index 41fafb8e3c..7584ccbad0 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index c4aae60d84..7e4ae23c29 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index 7f4fdf168a..b214d88d1a 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index 3c943ac1e8..4e72e147c6 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index a5461c6192..05f88eeacd 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index 251e1e7d6d..38f28bc29a 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index 71c298b098..6977e4c133 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index 8aa03b611f..0462fcac4b 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index c25730815a..8397cc3594 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index 7b83e7e980..a89e331b6f 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index d1a20fa7fe..63d1e3fdcc 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index 8164aaefb6..a12ff9a680 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:20:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot index ab5cdc2d29..7450a5733f 100644 --- a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot +++ b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po index 4432895572..f8c3855840 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po index 560d5ca45c..1b214774fd 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index 7219bdc072..2607310fa3 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po index 96591850de..9b033af4e0 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po index 624c91cae1..19ffecefdc 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:02+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index c13147e69d..67c5e7f6e5 100644 --- a/plugins/Imap/locale/Imap.pot +++ b/plugins/Imap/locale/Imap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po index 03d7aad091..eaf690107b 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:39+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index 0cac8f242b..d68f9af067 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:39+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 7f89a548c4..7096859d9c 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:39+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 caeff1b225..37966f184d 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:39+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 841040ecbe..fa55f6b98a 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 5c38e3b595..70020a4484 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 1481940f60..a6e9823d2f 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 62a7b893c6..f583238b55 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0a9e707308..1dd4e23084 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 598875c57b..ca941ecc49 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index 2ce7eb6892..cd4581fc55 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:57:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:03+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/InProcessCache/locale/InProcessCache.pot b/plugins/InProcessCache/locale/InProcessCache.pot index 98d507777f..69a084b60f 100644 --- a/plugins/InProcessCache/locale/InProcessCache.pot +++ b/plugins/InProcessCache/locale/InProcessCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po index 0377389616..2638994cef 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index 041d59f09b..d0d2ea40bf 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index 3a274cc7ec..53f99ecc13 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index eb2832e7b6..bf82a3e1ac 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index e10f70ab42..a2f57a2448 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index 7c3efc372c..559e20e3f1 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index f947dddbf9..1b01440b4f 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po index d6dd394021..82762200b2 100644 --- a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index 121037b504..697482ada8 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index bf114d3681..f293377bd2 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:05+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:15:59+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 49e012fdbe..44034a6e23 100644 --- a/plugins/InfiniteScroll/locale/InfiniteScroll.pot +++ b/plugins/InfiniteScroll/locale/InfiniteScroll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po index c96df1f759..376240a234 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index c06d78c0fa..31c5a181f5 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index f4e1c28aca..cfdd39a7d2 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index fc7d2cf771..5974984649 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 39273ba7fc..a8bc9a1ed1 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index 1aade67600..31ca4eb6fb 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 49a7ffcd1d..3d9e74be3d 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 7d6ddde148..04120c9486 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index d0ff1311ee..a6bd900401 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index 919436f61b..1bbc55a26a 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index 0687fae6d1..cb56a9ff55 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index b67799f3b0..f19ae73844 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 35e7c54b89..da55e15ed6 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6ed8766603..31fc0ca2a9 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index c2fc92232c..de335d1af6 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:04+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:07:13+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/Irc/locale/Irc.pot b/plugins/Irc/locale/Irc.pot index 9788aef953..17e4c612dd 100644 --- a/plugins/Irc/locale/Irc.pot +++ b/plugins/Irc/locale/Irc.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po index 5ed85ac97d..978d169ddf 100644 --- a/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fi/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:06+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index 4d805d2f89..477f3ae194 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index 494938cbe5..cd97eef754 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index 55ed566317..b0f8986d09 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index ff79c70e53..36f47b5560 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index f8a15275b9..76a78dc1b6 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:06+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index ce9e6367b5..94f0cf57d6 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index 358c19c902..da0e31a7c5 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 5670e5223b..7d45445f2b 100644 --- a/plugins/LdapAuthentication/locale/LdapAuthentication.pot +++ b/plugins/LdapAuthentication/locale/LdapAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po index 25c59eafcb..867996ba58 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po index f8a9a85e9e..a085fe4569 100644 --- a/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/es/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po index 86ac10ca33..4f544ea6b3 100644 --- a/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fi/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index 9811e9a29b..2a4cb7da13 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po index 6cd043c11a..2220caff4b 100644 --- a/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/he/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index bcac67fdd5..b866233997 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po index 91c41b92a6..5fe3341a09 100644 --- a/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/id/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po index a45a091ae3..746573a523 100644 --- a/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ja/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 715cd046af..319d46aebe 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ff12c81663..871ab9aea7 100644 --- a/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nb/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f537d5a068..5ac70288cd 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po index dc85ac28ac..c081f7fb95 100644 --- a/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po index 662e383c38..1f0f6a64db 100644 --- a/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/pt_BR/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po index e159f40e01..948d3a4e56 100644 --- a/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ru/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6f6179135b..51205c7917 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 13c748bc74..b5587ca945 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po index cbe8ef1fd9..4c03dff58e 100644 --- a/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/zh_CN/LC_MESSAGES/LdapAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:07+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 362b44d679..877a1efbab 100644 --- a/plugins/LdapAuthorization/locale/LdapAuthorization.pot +++ b/plugins/LdapAuthorization/locale/LdapAuthorization.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po index 27fdf05c02..f180dbe988 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po index 7ffa3c3c1f..0288c22bc7 100644 --- a/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/es/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po index 17f9875aa8..eaf0554c75 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po index 131070b0b5..9afbf36617 100644 --- a/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/he/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index a0617b5c1e..3047070a6d 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po index c39fe58928..085019f88c 100644 --- a/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/id/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index ccc2f71e66..d8a0080c09 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 d6e64dcb48..00d7531382 100644 --- a/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nb/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0b5a3f97d3..f87f0bc029 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po index 70d89bf880..694191c3b7 100644 --- a/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po index 771db83066..66afb69985 100644 --- a/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/pt_BR/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po index 4fb6392d33..2c27360f1e 100644 --- a/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ru/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ad0fa6b088..7d2453be21 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 9644e17891..5da94d1761 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po index 31fa9ea311..b43c8a49b2 100644 --- a/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/zh_CN/LC_MESSAGES/LdapAuthorization.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21: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: 2011-03-18 20:08:11+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index c9cdcc26f7..3aeafa68ff 100644 --- a/plugins/LilUrl/locale/LilUrl.pot +++ b/plugins/LilUrl/locale/LilUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index 7ec0652d9e..7577ff169c 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index c172307e6c..cd343db5e7 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index 690688dcdc..a82b5657eb 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index e9e5b300fa..68385c3868 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index 4b4ee88e87..2dbd3cddf3 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index c89d1eabf6..9b2a7c923c 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 2293a90f78..861f55003d 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3f555f5b6e..079cc4fa2f 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8c796e4307..10816cb56d 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 5ae9d1386a..e6f41f228f 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 cc2b2088b5..4cae672faf 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 88ba549eb6..87c88e1739 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index 2e835c66d1..05d3693a34 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:45+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:09+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LinkPreview/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 1f648f4287..f0a206b688 100644 --- a/plugins/LinkPreview/locale/LinkPreview.pot +++ b/plugins/LinkPreview/locale/LinkPreview.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po index 3cf59f922f..339c905b27 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index 6644054714..d9c8c584ad 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po index ce4819c4a4..2bde72ea61 100644 --- a/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/he/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index 65f75d85af..2b97024ce3 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index 9b93adad48..0ee9417bf2 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index dccdb7c365..53a27b33b2 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po index c03fa99ad8..e6d5b5a265 100644 --- a/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/pt/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po index bd7de3515c..aaf618d051 100644 --- a/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ru/LC_MESSAGES/LinkPreview.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po index e5de323ba2..779fd96e7e 100644 --- a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index a16b33add9..d661a6d1a9 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po index 115e16f0eb..bf78eef3b5 100644 --- a/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/zh_CN/LC_MESSAGES/LinkPreview.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:55+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 1f9773e15d..0201e64d6a 100644 --- a/plugins/Linkback/locale/Linkback.pot +++ b/plugins/Linkback/locale/Linkback.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index 40214059df..83e9e14fcf 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index f80c07d035..a2672bfb07 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index 2d47a1ea1e..0170ebf1f1 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index c8d6febc08..2a75f39083 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index ec4bffadc7..95b26e63fb 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index def7b68580..548f584e86 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 8cb3c5b8b1..b839a00e41 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index c1ca19e632..090933bb68 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 183f920632..8bf215bf0d 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 4757bb03d1..a9494704b6 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:10+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index 6f213df704..d10f376418 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index 85cecda554..7aa1d94785 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 2deff73567..a433c976e5 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 d8a9884422..f24b1d1c06 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index b2907849d0..6b697649f5 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:46+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:11+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:21+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/LogFilter/locale/LogFilter.pot b/plugins/LogFilter/locale/LogFilter.pot index 47324cf832..f96bd351f0 100644 --- a/plugins/LogFilter/locale/LogFilter.pot +++ b/plugins/LogFilter/locale/LogFilter.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po index 3df4afe6c8..582b3a5584 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index 29e52aeda9..2b7f89369a 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index 619957b72b..cee25fd520 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 7448b37fd7..e6124851d9 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index 5b6efa5869..4c6e9e1b97 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index 2bad7535c1..7f5e6bbc84 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index 71559983dc..290a060434 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index 09bf9016e9..ab075f4323 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index 5716356379..e5b55ad8d3 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po index 9c2cc57de4..94443dc603 100644 --- a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:12+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index 910a6f3775..2b92c887a8 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index 250e823dbe..5be40df852 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:13+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:22+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 542bb0f82d..814728bd22 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po index 1344f93f02..d67392e121 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 69cf44904f..9f5d21f7bd 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8719ee65cd..3d3bc68cc2 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:13+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 7c2a55879c..838213ca91 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index 9972469e3b..18b6f91618 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:13+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index c77afed728..e890a1ae04 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 5cc7bfa3e4..22e12ca5b7 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 abf341c262..91a9735e81 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index 84cb6ffa64..a009319509 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 6e0639fd05..81729664e9 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 4bd4fad32a..cf4b7a1bd0 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po index cd18adeb96..1eae8ed4d2 100644 --- a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:07+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:06+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index 051fd3fc8f..279432b611 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index bc7a98364a..fc02957fec 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 7cda2bb371..b884c4f53f 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 9a99604a27..f55fad77e4 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index 1cfa2cb171..cd1ca372bc 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-03 13:40:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 6e949181d5..dd901e0c16 100644 --- a/plugins/Memcache/locale/Memcache.pot +++ b/plugins/Memcache/locale/Memcache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po index 4bc0183366..da0b831438 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index b4fbcea8fa..9186e163eb 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:14+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index b10b2136e1..8beb46c786 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 85f871e31d..87fdab1200 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index f43326da82..2fb285eb2a 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index 8d5c4b1594..9e1ea684a5 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 d06e54cc7a..13a5c5b62e 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c72cbfb850..4a45938b75 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0bb55a49b8..57b10f8996 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index af198fdfc5..48007d5b06 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index 765edee83b..aedb585087 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index 07aeb0e0f9..595d5397cf 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3435ea89d5..615e86cc89 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0cc4379694..9d7a0b3e67 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index de0dab8d0f..6257ae1d30 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index cd23165581..234ae35566 100644 --- a/plugins/Memcached/locale/Memcached.pot +++ b/plugins/Memcached/locale/Memcached.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po index e95e588d94..cf395d7006 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index 7557c38fe7..dd47e50507 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index a53cc1f272..478eac2aad 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:15+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index 3e39dd944b..ff14ad579c 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index 50b0ab0b1c..2836f0cd98 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index 33c77b2224..691ae0ffbb 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index bbcbb27b99..05d5986403 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index ed8588133a..272a4aecb3 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index 4efde9a402..7f9e3edb4e 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 71a8c76e24..cc24f49c26 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 282de8c5a9..cf31c052f7 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index 74dc2d1549..b158e06300 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index 12fc7d3496..1de74a0771 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 2835309e9d..3f15acd470 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 b29dbb5564..a4029d4ce0 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index 87e82e6bda..ab1991c4d0 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:16+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:16+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index 8904f41e99..ddc1d8efd4 100644 --- a/plugins/Meteor/locale/Meteor.pot +++ b/plugins/Meteor/locale/Meteor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po index 72577d7a01..aa6e0f31df 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index 5876af1f13..456c673857 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6ba41900f5..9492199fde 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po index bfb99a6274..029b85cbbc 100644 --- a/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/id/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index cf338fd99d..cb2f489651 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index c0b50fb65a..59c851aca2 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index 4720fa3df4..a963546355 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8838e89c4c..fdadaa15c2 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 edec311211..7fd85b41da 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po index 4cb0fc565a..23eb53aa19 100644 --- a/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/zh_CN/LC_MESSAGES/Meteor.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:17+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index dc7028b007..f164ce1634 100644 --- a/plugins/Minify/locale/Minify.pot +++ b/plugins/Minify/locale/Minify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po index 90dd776bd6..d953e63049 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 30cdf8fee5..7213206647 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3dc9ce752d..e01ebe37be 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 dc5581b028..d72a8bd11a 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index 29e849e7c8..506c64dcbd 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index f74f666bbc..2984291a9e 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index 37934d8942..4740308b0a 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index 6e0eac4e87..312b6e6d4e 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 713b261d8c..0ff0acf662 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index 672ebad958..ee9d70e817 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:18+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:19+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 205864c2a4..4534a97f0a 100644 --- a/plugins/MobileProfile/locale/MobileProfile.pot +++ b/plugins/MobileProfile/locale/MobileProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po index 2fcdc9a745..a46c4643ef 100644 --- a/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ar/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po index 8ddb818345..87ea4a96ec 100644 --- a/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/br/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index fb402613f0..c6ea62ef45 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Chechen \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ce\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index 9e76358379..181aec8245 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:55+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 7b8f966723..3c90e85183 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po index 37b1275b21..362a07e9cf 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po index f8965078d6..fc19c033b7 100644 --- a/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/gl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index f0c2f8767e..c76fb5689c 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 cca1e4a465..48320cedd3 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index 62934e1b96..0ae54562d5 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 3294c3c5c7..3f33b657fd 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po index a31ad462e0..c5826099a1 100644 --- a/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ps/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Pashto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ps\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 05b19fb655..f154b0dcf6 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po index 42211de523..7c1f61b485 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po index 253aff7768..ac62edf222 100644 --- a/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ta/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po index 7dcfe0d0c3..97315cad3b 100644 --- a/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/te/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:20+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index 07504453c0..60e1ffe8eb 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 028b6e420d..0088ba0963 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 eb05d4ac0a..f11c8c9496 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:16:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:17:58+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index c70a147180..c779048411 100644 --- a/plugins/ModHelper/locale/ModHelper.pot +++ b/plugins/ModHelper/locale/ModHelper.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po index c000908d83..bb28bcce3c 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index 179e193cc8..1991be214c 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index b0d6a75744..cac2c90cdc 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index 10db1aa786..5d038c7148 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index d525139c69..401437a4ae 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index 5f464d325b..a8a84da446 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index 46192152e0..22db43a44f 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index 2b39a33f31..2515fc3b5e 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index 27266cb7af..88bddf814b 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po index 90051033c2..ad0d4c5cf9 100644 --- a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:21+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index ff0c67f7a9..be147946f2 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModPlus/locale/ModPlus.pot b/plugins/ModPlus/locale/ModPlus.pot index 8afabddb1b..0355c1812c 100644 --- a/plugins/ModPlus/locale/ModPlus.pot +++ b/plugins/ModPlus/locale/ModPlus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index ffa9ce0592..cb11f28138 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index 24edf7e94c..d6a166edc4 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index b517be2c77..ac4f05d6dd 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index 84e8b17ed9..e92126544c 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index 5758d9f285..2b5f9d5202 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po index 4bbfc6e3d5..8bee0eb4e4 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index 7f6dbc53cf..79af0f194a 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:22+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" diff --git a/plugins/Mollom/locale/Mollom.pot b/plugins/Mollom/locale/Mollom.pot index ed323f001a..601e619922 100644 --- a/plugins/Mollom/locale/Mollom.pot +++ b/plugins/Mollom/locale/Mollom.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po index 1fd53cc67f..555dfc9845 100644 --- a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:23+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po index f4813fa447..f0e9aa9b82 100644 --- a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po index 6743f53d2e..2857729b48 100644 --- a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po index dc0901666a..91cd1271ae 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po index 206e75d26b..6588c1990b 100644 --- a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po index c92266bc6d..09f288649c 100644 --- a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:16:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Msn/locale/Msn.pot b/plugins/Msn/locale/Msn.pot index 14b0a181e1..b92928f33f 100644 --- a/plugins/Msn/locale/Msn.pot +++ b/plugins/Msn/locale/Msn.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po index 5766787767..67921067ff 100644 --- a/plugins/Msn/locale/br/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/br/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:23+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po index 983f1cc03a..620fd6a0c6 100644 --- a/plugins/Msn/locale/el/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/el/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:24+0000\n" "Language-Team: Greek \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po index 5c36c09ba6..0eb9c50a2a 100644 --- a/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/fr/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index 7e0133139a..cbe4ac46b9 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index 9dccf5b748..84fd56e9fa 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index b42d977be9..6325ca34e0 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po index 55540df848..39e01194bb 100644 --- a/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/pt/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:24+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index a65127e42c..9993db97da 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:24+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index 877c158711..1e5e166bbb 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:21:59+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index cc8ceabc23..65e8b18e39 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:00+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-26 16:22:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po index 6327a061be..2fc2f0ccaf 100644 --- a/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ar/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:25+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po index 8dc95ad110..6bb9c94e63 100644 --- a/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/br/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:25+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po index 65f4cfa15c..e70623205f 100644 --- a/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/de/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po index 7bd202145b..3e9c5d754c 100644 --- a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po index 920413a972..d8d6c1d4cc 100644 --- a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po index e8ed87dfbf..e35af872d5 100644 --- a/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/nl/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po index 86ecd9e99b..8760fc203a 100644 --- a/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/te/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/tl/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/tl/LC_MESSAGES/NewMenu.po index 4bccdff7d9..0f8d457b38 100644 --- a/plugins/NewMenu/locale/tl/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/tl/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po index 4f44ab4bc5..16d7096bf1 100644 --- a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po @@ -10,12 +10,12 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po index d069a3b9ce..2ee21ebb88 100644 --- a/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po +++ b/plugins/NewMenu/locale/zh_CN/LC_MESSAGES/NewMenu.po @@ -10,13 +10,13 @@ msgstr "" "Project-Id-Version: StatusNet - NewMenu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2011-01-29 21:45+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:01+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-newmenu\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 2d8959bd90..c0ed03cfa8 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po index d2d1c2430c..bebaf76249 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index d584824f58..694ec15559 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index 404c5badf4..2a8d7f31ab 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 11e51e87e5..cb4246d3ba 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index cfec3baba3..576a37fdf8 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index c81efbeb37..996484a962 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 89d6de02e2..419f55e1d5 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 12e5fbcb7a..295bd5b460 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index aded1b956e..b4ca5ac45b 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index f68f040443..66b5461a2d 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po index bd138c171d..a0e767c561 100644 --- a/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po index 4c9262a277..b7adb3b64b 100644 --- a/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/pt/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index f849a26d31..3e65599de0 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index bcee1d39d3..3bc8c99e27 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 661ed7189d..218d336776 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 fca3e665d8..3e354adc5c 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po index ee0c91b230..dd4952c7e6 100644 --- a/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/zh_CN/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index aa274caf41..bc2b9646b7 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -136,13 +136,13 @@ msgctxt "TITLE" msgid "Follow list" msgstr "" -#. TRANS: Exception thrown when subscription of remote people tag fails. +#. TRANS: Exception thrown when subscription to remote list fails. #: OStatusPlugin.php:889 -msgid "Failed subscribing to remote people tag." +msgid "Failed subscribing to remote list." msgstr "" #: OStatusPlugin.php:925 -msgid "Unfollow people tag" +msgid "Unfollow list" msgstr "" #: OStatusPlugin.php:926 @@ -263,7 +263,7 @@ msgstr "" #. TRANS: Client exception. %s is a feed URL. #: actions/pushhub.php:186 #, php-format -msgid "Invalid hub.topic %s; people tag does not exist." +msgid "Invalid hub.topic %s; list does not exist." msgstr "" #. TRANS: Client exception. @@ -315,7 +315,7 @@ msgid "Could not confirm remote profile address." msgstr "" #: actions/ostatustag.php:115 -msgid "OStatus people tag" +msgid "OStatus list" msgstr "" #: actions/pushcallback.php:50 @@ -352,7 +352,9 @@ msgstr "" msgid "Unexpected unsubscribe request for %s." msgstr "" +#. TRANS: Client error. #: actions/ownerxrd.php:39 actions/usersalmon.php:43 +#: actions/ostatusinit.php:221 actions/ostatusinit.php:234 msgid "No such user." msgstr "" @@ -537,11 +539,11 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "" #: actions/ostatuspeopletag.php:73 -msgid "Subscribe to people tag" +msgid "Subscribe to list" msgstr "" #: actions/ostatuspeopletag.php:75 -msgid "Address of the OStatus people tag, like http://example.net/user/all/tag" +msgid "Address of the OStatus list, like http://example.net/user/all/tag" msgstr "" #: actions/ostatuspeopletag.php:79 @@ -549,12 +551,12 @@ msgid "Continue" msgstr "" #: actions/ostatuspeopletag.php:98 -msgid "You are already subscribed to this people tag." +msgid "You are already subscribed to this list." msgstr "" -#. TRANS: Page title for OStatus remote people tag subscription form +#. TRANS: Page title for OStatus remote list subscription form #: actions/ostatuspeopletag.php:161 -msgid "Confirm subscription to remote people tag" +msgid "Confirm subscription to remote list" msgstr "" #. TRANS: Instructions for OStatus list subscription form. @@ -565,7 +567,7 @@ msgid "" msgstr "" #. TRANS: Client error. -#: actions/groupsalmon.php:47 +#: actions/groupsalmon.php:47 actions/ostatusinit.php:229 msgid "No such group." msgstr "" @@ -604,7 +606,7 @@ msgstr "" msgid "Could not remove remote user %1$s from group %2$s." msgstr "" -#: actions/peopletagsalmon.php:45 +#: actions/peopletagsalmon.php:45 actions/ostatusinit.php:242 msgid "No such list." msgstr "" @@ -657,13 +659,13 @@ msgctxt "BUTTON" msgid "Join" msgstr "" -#. TRANS: Form legend. %1$s is a people tag, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. #: actions/ostatusinit.php:108 #, php-format -msgid "Subscribe to people tagged %1$s by %2$s" +msgid "Subscribe to list %1$s by %2$s" msgstr "" -#. TRANS: Button text to subscribe to a people tag. +#. TRANS: Button text to subscribe to a list. #. TRANS: Button text to subscribe to a profile. #: actions/ostatusinit.php:110 actions/ostatusinit.php:116 msgctxt "BUTTON" @@ -701,6 +703,11 @@ msgstr "" msgid "Must provide a remote profile." msgstr "" +#. TRANS: Client error. +#: actions/ostatusinit.php:245 +msgid "No local user or group nickname provided." +msgstr "" + #. TRANS: Page title. #: actions/ostatusinit.php:252 msgid "OStatus Connect" @@ -799,6 +806,14 @@ msgstr "" msgid "Unable to fetch avatar from %s." msgstr "" +#: classes/Ostatus_profile.php:1212 +msgid "No author ID URI found." +msgstr "" + +#: classes/Ostatus_profile.php:1237 +msgid "No profile URI." +msgstr "" + #. TRANS: Exception. #: classes/Ostatus_profile.php:1243 msgid "Local user cannot be referenced as remote." @@ -809,11 +824,19 @@ msgstr "" msgid "Local group cannot be referenced as remote." msgstr "" +#: classes/Ostatus_profile.php:1255 +msgid "Local list cannot be referenced as remote." +msgstr "" + #. TRANS: Server exception. #: classes/Ostatus_profile.php:1308 classes/Ostatus_profile.php:1319 msgid "Cannot save local profile." msgstr "" +#: classes/Ostatus_profile.php:1329 +msgid "Cannot save local list." +msgstr "" + #. TRANS: Server exception. #: classes/Ostatus_profile.php:1337 msgid "Cannot save OStatus profile." @@ -833,7 +856,7 @@ msgstr "" #. TRANS: Exception. %s is a webfinger address. #: classes/Ostatus_profile.php:1775 #, php-format -msgid "Could not save ostatus_profile for \"%s\"." +msgid "Could not save OStatus profile for \"%s\"." msgstr "" #. TRANS: Exception. %s is a webfinger address. diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index f24d5f3bde..1afbeb2b80 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:50+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -134,13 +134,14 @@ msgctxt "TITLE" msgid "Follow list" msgstr "" -#. TRANS: Exception thrown when subscription of remote people tag fails. +#. TRANS: Exception thrown when subscription to remote list fails. #, fuzzy -msgid "Failed subscribing to remote people tag." +msgid "Failed subscribing to remote list." msgstr "Fehler beim Beitreten der Remotegruppe." -msgid "Unfollow people tag" -msgstr "" +#, fuzzy +msgid "Unfollow list" +msgstr "Nicht mehr beachten" #, fuzzy, php-format msgid "%1$s stopped following the list %2$s by %3$s." @@ -244,7 +245,7 @@ msgstr "Ungültiges hub.topic „%s“. Gruppe existiert nicht." #. TRANS: Client exception. %s is a feed URL. #, fuzzy, php-format -msgid "Invalid hub.topic %s; people tag does not exist." +msgid "Invalid hub.topic %s; list does not exist." msgstr "Ungültiges hub.topic „%s“. Gruppe existiert nicht." #. TRANS: Client exception. @@ -291,7 +292,7 @@ msgid "Could not confirm remote profile address." msgstr "Konnte Remoteprofiladresse nicht bestätigen." #, fuzzy -msgid "OStatus people tag" +msgid "OStatus list" msgstr "OStatus-Verbindung" msgid "Empty or invalid feed id." @@ -322,6 +323,7 @@ msgstr "Unerwartete Deabonnement-Anfrage für %s." msgid "Unexpected unsubscribe request for %s." msgstr "Unerwartete Deabonnement-Anfrage für %s." +#. TRANS: Client error. msgid "No such user." msgstr "Unbekannter Benutzer." @@ -485,11 +487,11 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "Nachricht mit ID %1$s wurde nicht von %2$s geschrieben." #, fuzzy -msgid "Subscribe to people tag" -msgstr "Abonniere diesen Benutzer" +msgid "Subscribe to list" +msgstr "Abonniere %s" #, fuzzy -msgid "Address of the OStatus people tag, like http://example.net/user/all/tag" +msgid "Address of the OStatus list, like http://example.net/user/all/tag" msgstr "" "OStatus-Adresse der Gruppe. Beispiel: http://example.net/group/nickname." @@ -498,12 +500,12 @@ msgid "Continue" msgstr "Weiter" #, fuzzy -msgid "You are already subscribed to this people tag." +msgid "You are already subscribed to this list." msgstr "Du hast diesen Benutzer bereits abonniert:" -#. TRANS: Page title for OStatus remote people tag subscription form +#. TRANS: Page title for OStatus remote list subscription form #, fuzzy -msgid "Confirm subscription to remote people tag" +msgid "Confirm subscription to remote list" msgstr "Bestätige das Beitreten einer Remotegruppe" #. TRANS: Instructions for OStatus list subscription form. @@ -599,12 +601,12 @@ msgctxt "BUTTON" msgid "Join" msgstr "Beitreten" -#. TRANS: Form legend. %1$s is a people tag, %2$s is a tagger's name. -#, php-format -msgid "Subscribe to people tagged %1$s by %2$s" -msgstr "" +#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#, fuzzy, php-format +msgid "Subscribe to list %1$s by %2$s" +msgstr "Abonniere %s" -#. TRANS: Button text to subscribe to a people tag. +#. TRANS: Button text to subscribe to a list. #. TRANS: Button text to subscribe to a profile. msgctxt "BUTTON" msgid "Subscribe" @@ -636,6 +638,10 @@ msgstr "Deine Konto-ID (z.B. user@identi.ca)." msgid "Must provide a remote profile." msgstr "Du musst ein Remoteprofil angeben." +#. TRANS: Client error. +msgid "No local user or group nickname provided." +msgstr "" + #. TRANS: Page title. msgid "OStatus Connect" msgstr "OStatus-Verbindung" @@ -729,6 +735,13 @@ msgstr "" msgid "Unable to fetch avatar from %s." msgstr "Kann den Avatar von %s nicht abrufen." +msgid "No author ID URI found." +msgstr "" + +#, fuzzy +msgid "No profile URI." +msgstr "Beitritt in Remote-Gruppe fehlgeschlagen!" + #. TRANS: Exception. #, fuzzy msgid "Local user cannot be referenced as remote." @@ -739,11 +752,19 @@ msgstr "Lokaler Benutzer kann nicht als remote verwiesen werden." msgid "Local group cannot be referenced as remote." msgstr "Lokale Gruppe kann nicht als remote verwiesen werden." +#, fuzzy +msgid "Local list cannot be referenced as remote." +msgstr "Lokaler Benutzer kann nicht als remote verwiesen werden." + #. TRANS: Server exception. #, fuzzy msgid "Cannot save local profile." msgstr "Lokales Profil kann nicht gespeichert werden." +#, fuzzy +msgid "Cannot save local list." +msgstr "Lokales Profil kann nicht gespeichert werden." + #. TRANS: Server exception. #, fuzzy msgid "Cannot save OStatus profile." @@ -760,7 +781,7 @@ msgstr "Profil für „%s“ konnte nicht gespeichert werden." #. TRANS: Exception. %s is a webfinger address. #, fuzzy, php-format -msgid "Could not save ostatus_profile for \"%s\"." +msgid "Could not save OStatus profile for \"%s\"." msgstr "Ostatus_profile für „%s“ konnte nicht gespeichert werden." #. TRANS: Exception. %s is a webfinger address. @@ -878,21 +899,9 @@ msgid "Received a salmon slap from unidentified actor." msgstr "Einen Salmon-Slap von einem unidentifizierten Aktor empfangen." #, fuzzy -#~ msgid "Could not set up remote people tag subscription." -#~ msgstr "Konnte Remote-Abonnement nicht einrichten." +#~ msgid "Subscribe to people tag" +#~ msgstr "Abonniere diesen Benutzer" #, fuzzy -#~ msgid "No such people tag." -#~ msgstr "Keine derartige Gruppe." - -#, fuzzy -#~ msgid "Cannot accept remote posts for a remote people tag." -#~ msgstr "Kann Remoteposts für Remotegruppen nicht akzeptieren." - -#, fuzzy -#~ msgid "Cannot read profile to cancel people tag membership." -#~ msgstr "Kann Profil nicht lesen, um die Gruppenmitgliedschaft zu kündigen." - -#, fuzzy -#~ msgid "Could not remove remote user %1$s from people tag %2$s." -#~ msgstr "Konnte Remotebenutzer %1$s nicht aus der Gruppe %2$s entfernen." +#~ msgid "You are already subscribed to this people tag." +#~ msgstr "Du hast diesen Benutzer bereits abonniert:" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 3ec941d237..32abb4435b 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:50+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -135,13 +135,14 @@ msgctxt "TITLE" msgid "Follow list" msgstr "" -#. TRANS: Exception thrown when subscription of remote people tag fails. +#. TRANS: Exception thrown when subscription to remote list fails. #, fuzzy -msgid "Failed subscribing to remote people tag." +msgid "Failed subscribing to remote list." msgstr "Échec lors de l’adhésion au groupe distant." -msgid "Unfollow people tag" -msgstr "" +#, fuzzy +msgid "Unfollow list" +msgstr "Ne plus suivre" #, fuzzy, php-format msgid "%1$s stopped following the list %2$s by %3$s." @@ -251,7 +252,7 @@ msgstr "Le sujet de concentrateur « %s » est invalide. Le groupe n’existe pa #. TRANS: Client exception. %s is a feed URL. #, fuzzy, php-format -msgid "Invalid hub.topic %s; people tag does not exist." +msgid "Invalid hub.topic %s; list does not exist." msgstr "Le sujet de concentrateur « %s » est invalide. Le groupe n’existe pas." #. TRANS: Client exception. @@ -298,7 +299,7 @@ msgid "Could not confirm remote profile address." msgstr "Impossible de confirmer l’adresse de profil distant." #, fuzzy -msgid "OStatus people tag" +msgid "OStatus list" msgstr "Connexion OStatus" msgid "Empty or invalid feed id." @@ -331,6 +332,7 @@ msgstr "Demande d’abonnement inattendue pour le sujet invalide « %s »." msgid "Unexpected unsubscribe request for %s." msgstr "Demande de désabonnement inattendue pour le sujet invalide « %s »." +#. TRANS: Client error. msgid "No such user." msgstr "Utilisateur inexistant." @@ -498,11 +500,11 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "Avis d’identifiant « %1$s » non publié par %2$s." #, fuzzy -msgid "Subscribe to people tag" -msgstr "S’abonner à un utilisateur" +msgid "Subscribe to list" +msgstr "S’abonner à « %s »" #, fuzzy -msgid "Address of the OStatus people tag, like http://example.net/user/all/tag" +msgid "Address of the OStatus list, like http://example.net/user/all/tag" msgstr "" "Une adresse de groupe OStatus telle que « http://example.net/group/pseudonyme " "»." @@ -512,12 +514,12 @@ msgid "Continue" msgstr "Continuer" #, fuzzy -msgid "You are already subscribed to this people tag." +msgid "You are already subscribed to this list." msgstr "Vous êtes déjà abonné à cet utilisateur." -#. TRANS: Page title for OStatus remote people tag subscription form +#. TRANS: Page title for OStatus remote list subscription form #, fuzzy -msgid "Confirm subscription to remote people tag" +msgid "Confirm subscription to remote list" msgstr "Confirmer l’adhésion au groupe distant" #. TRANS: Instructions for OStatus list subscription form. @@ -617,12 +619,12 @@ msgctxt "BUTTON" msgid "Join" msgstr "Rejoindre" -#. TRANS: Form legend. %1$s is a people tag, %2$s is a tagger's name. -#, php-format -msgid "Subscribe to people tagged %1$s by %2$s" -msgstr "" +#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#, fuzzy, php-format +msgid "Subscribe to list %1$s by %2$s" +msgstr "S’abonner à « %s »" -#. TRANS: Button text to subscribe to a people tag. +#. TRANS: Button text to subscribe to a list. #. TRANS: Button text to subscribe to a profile. msgctxt "BUTTON" msgid "Subscribe" @@ -654,6 +656,10 @@ msgstr "Votre identifiant de compte (utilisateur@identi.ca, par exemple)." msgid "Must provide a remote profile." msgstr "Vous devez fournir un profil distant." +#. TRANS: Client error. +msgid "No local user or group nickname provided." +msgstr "" + #. TRANS: Page title. msgid "OStatus Connect" msgstr "Connexion OStatus" @@ -752,6 +758,13 @@ msgstr "" msgid "Unable to fetch avatar from %s." msgstr "Impossible de récupérer l’avatar depuis « %s »." +msgid "No author ID URI found." +msgstr "" + +#, fuzzy +msgid "No profile URI." +msgstr "L’adhésion au groupe distant a échoué !" + #. TRANS: Exception. #, fuzzy msgid "Local user cannot be referenced as remote." @@ -762,11 +775,19 @@ msgstr "L’utilisateur local ne peut être référencé comme distant." msgid "Local group cannot be referenced as remote." msgstr "Le groupe local ne peut être référencé comme distant." +#, fuzzy +msgid "Local list cannot be referenced as remote." +msgstr "L’utilisateur local ne peut être référencé comme distant." + #. TRANS: Server exception. #, fuzzy msgid "Cannot save local profile." msgstr "Impossible de sauvegarder le profil local." +#, fuzzy +msgid "Cannot save local list." +msgstr "Impossible de sauvegarder le profil local." + #. TRANS: Server exception. #, fuzzy msgid "Cannot save OStatus profile." @@ -783,7 +804,7 @@ msgstr "Impossible de sauvegarder le profil pour « %s »." #. TRANS: Exception. %s is a webfinger address. #, fuzzy, php-format -msgid "Could not save ostatus_profile for \"%s\"." +msgid "Could not save OStatus profile for \"%s\"." msgstr "Impossible d’enregistrer le profil OStatus pour « %s »." #. TRANS: Exception. %s is a webfinger address. @@ -902,23 +923,9 @@ msgid "Received a salmon slap from unidentified actor." msgstr "Réception d’une giffle Salmon d’un acteur non identifié." #, fuzzy -#~ msgid "Could not set up remote people tag subscription." -#~ msgstr "Impossible de mettre en place l’abonnement distant." +#~ msgid "Subscribe to people tag" +#~ msgstr "S’abonner à un utilisateur" #, fuzzy -#~ msgid "No such people tag." -#~ msgstr "Groupe inexistant." - -#, fuzzy -#~ msgid "Cannot accept remote posts for a remote people tag." -#~ msgstr "" -#~ "Impossible d’accepter des envois distants de messages pour un groupe " -#~ "distant." - -#, fuzzy -#~ msgid "Cannot read profile to cancel people tag membership." -#~ msgstr "Impossible de lire le profil pour annuler l’adhésion à un groupe." - -#, fuzzy -#~ msgid "Could not remove remote user %1$s from people tag %2$s." -#~ msgstr "Impossible de retirer l’utilisateur distant %1$s du groupe %2$s." +#~ msgid "You are already subscribed to this people tag." +#~ msgstr "Vous êtes déjà abonné à cet utilisateur." diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index f96cda2b5f..d9ac4fe865 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:50+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -133,13 +133,14 @@ msgctxt "TITLE" msgid "Follow list" msgstr "" -#. TRANS: Exception thrown when subscription of remote people tag fails. +#. TRANS: Exception thrown when subscription to remote list fails. #, fuzzy -msgid "Failed subscribing to remote people tag." +msgid "Failed subscribing to remote list." msgstr "Falleva de facer se membro del gruppo remote." -msgid "Unfollow people tag" -msgstr "" +#, fuzzy +msgid "Unfollow list" +msgstr "Non plus sequer" #, fuzzy, php-format msgid "%1$s stopped following the list %2$s by %3$s." @@ -243,7 +244,7 @@ msgstr "Invalide hub.topic \"%s\". Gruppo non existe." #. TRANS: Client exception. %s is a feed URL. #, fuzzy, php-format -msgid "Invalid hub.topic %s; people tag does not exist." +msgid "Invalid hub.topic %s; list does not exist." msgstr "Invalide hub.topic \"%s\". Gruppo non existe." #. TRANS: Client exception. @@ -290,7 +291,7 @@ msgid "Could not confirm remote profile address." msgstr "Non poteva confirmar le adresse del profilo remote." #, fuzzy -msgid "OStatus people tag" +msgid "OStatus list" msgstr "Connexion OStatus" msgid "Empty or invalid feed id." @@ -321,6 +322,7 @@ msgstr "Requesta de subscription inexpectate pro %s." msgid "Unexpected unsubscribe request for %s." msgstr "Requesta de cancellation de subscription inexpectate pro %s." +#. TRANS: Client error. msgid "No such user." msgstr "Iste usator non existe." @@ -483,11 +485,11 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "Nota con ID %1$s non publicate per %2$s." #, fuzzy -msgid "Subscribe to people tag" -msgstr "Subscriber a usator" +msgid "Subscribe to list" +msgstr "Subscriber a %s" #, fuzzy -msgid "Address of the OStatus people tag, like http://example.net/user/all/tag" +msgid "Address of the OStatus list, like http://example.net/user/all/tag" msgstr "" "Un adresse de gruppo OStatus, como http://example.net/group/pseudonymo." @@ -496,12 +498,12 @@ msgid "Continue" msgstr "Continuar" #, fuzzy -msgid "You are already subscribed to this people tag." +msgid "You are already subscribed to this list." msgstr "Tu es ja subscribite a iste usator." -#. TRANS: Page title for OStatus remote people tag subscription form +#. TRANS: Page title for OStatus remote list subscription form #, fuzzy -msgid "Confirm subscription to remote people tag" +msgid "Confirm subscription to remote list" msgstr "Confirmar adhesion a gruppo remote" #. TRANS: Instructions for OStatus list subscription form. @@ -597,12 +599,12 @@ msgctxt "BUTTON" msgid "Join" msgstr "Inscriber" -#. TRANS: Form legend. %1$s is a people tag, %2$s is a tagger's name. -#, php-format -msgid "Subscribe to people tagged %1$s by %2$s" -msgstr "" +#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#, fuzzy, php-format +msgid "Subscribe to list %1$s by %2$s" +msgstr "Subscriber a %s" -#. TRANS: Button text to subscribe to a people tag. +#. TRANS: Button text to subscribe to a list. #. TRANS: Button text to subscribe to a profile. msgctxt "BUTTON" msgid "Subscribe" @@ -634,6 +636,10 @@ msgstr "Le ID de tu conto (p.ex. usator@identi.ca)." msgid "Must provide a remote profile." msgstr "Debe fornir un profilo remote." +#. TRANS: Client error. +msgid "No local user or group nickname provided." +msgstr "" + #. TRANS: Page title. msgid "OStatus Connect" msgstr "Connexion OStatus" @@ -721,6 +727,13 @@ msgstr "Tentava actualisar avatar pro profilo remote non salveguardate %s." msgid "Unable to fetch avatar from %s." msgstr "Incapace de obtener avatar ab %s." +msgid "No author ID URI found." +msgstr "" + +#, fuzzy +msgid "No profile URI." +msgstr "Le adhesion al gruppo remote ha fallite!" + #. TRANS: Exception. #, fuzzy msgid "Local user cannot be referenced as remote." @@ -731,11 +744,19 @@ msgstr "Usator local non pote esser referentiate como remote." msgid "Local group cannot be referenced as remote." msgstr "Gruppo local non pote esser referentiate como remote." +#, fuzzy +msgid "Local list cannot be referenced as remote." +msgstr "Usator local non pote esser referentiate como remote." + #. TRANS: Server exception. #, fuzzy msgid "Cannot save local profile." msgstr "Non pote salveguardar profilo local." +#, fuzzy +msgid "Cannot save local list." +msgstr "Non pote salveguardar profilo local." + #. TRANS: Server exception. #, fuzzy msgid "Cannot save OStatus profile." @@ -752,7 +773,7 @@ msgstr "Non poteva salveguardar profilo pro \"%s\"." #. TRANS: Exception. %s is a webfinger address. #, fuzzy, php-format -msgid "Could not save ostatus_profile for \"%s\"." +msgid "Could not save OStatus profile for \"%s\"." msgstr "Non poteva salveguardar osatus_profile pro %s." #. TRANS: Exception. %s is a webfinger address. @@ -868,21 +889,9 @@ msgid "Received a salmon slap from unidentified actor." msgstr "Recipeva un claffo de salmon de un actor non identificate." #, fuzzy -#~ msgid "Could not set up remote people tag subscription." -#~ msgstr "Non poteva configurar le subscription remote." +#~ msgid "Subscribe to people tag" +#~ msgstr "Subscriber a usator" #, fuzzy -#~ msgid "No such people tag." -#~ msgstr "Gruppo non existe." - -#, fuzzy -#~ msgid "Cannot accept remote posts for a remote people tag." -#~ msgstr "Non pote acceptar messages remote pro un gruppo remote." - -#, fuzzy -#~ msgid "Cannot read profile to cancel people tag membership." -#~ msgstr "Non pote leger profilo pro cancellar membrato de gruppo." - -#, fuzzy -#~ msgid "Could not remove remote user %1$s from people tag %2$s." -#~ msgstr "Non poteva remover le usator remote %1$s del gruppo %2$s." +#~ msgid "You are already subscribed to this people tag." +#~ msgstr "Tu es ja subscribite a iste usator." diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 2fc307f21e..30941eaee4 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:50+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -116,21 +116,22 @@ msgid "%1$s has left group %2$s." msgstr "%1$s ја напушти групата %2$s." #. TRANS: Exception thrown when setup of remote list subscription fails. -#, fuzzy msgid "Could not set up remote list subscription." -msgstr "Не можев да ја поставам далечинската претплата." +msgstr "Не можев да ја воспоставам далечинската претплата на списоци." #. TRANS: Title for remote follow list. msgctxt "TITLE" msgid "Follow list" msgstr "Список на следења" -#. TRANS: Exception thrown when subscription of remote people tag fails. -msgid "Failed subscribing to remote people tag." +#. TRANS: Exception thrown when subscription to remote list fails. +#, fuzzy +msgid "Failed subscribing to remote list." msgstr "Не успеав да Ве зачленам во далечинската ознака за луѓе." -msgid "Unfollow people tag" -msgstr "Престани следење на ознака за луѓе" +#, fuzzy +msgid "Unfollow list" +msgstr "Список на следења" #, php-format msgid "%1$s stopped following the list %2$s by %3$s." @@ -140,9 +141,9 @@ msgctxt "TITLE" msgid "Tag" msgstr "Означи" -#, fuzzy, php-format +#, php-format msgid "%1$s listed %2$s in the list %3$s." -msgstr "%1$s го/ја означи %2$s во списокот %3$s." +msgstr "%1$s го/ја наведе %2$s во списокот %3$s." #, php-format msgid "" @@ -234,8 +235,8 @@ msgid "Invalid hub.topic \"%s\". Group does not exist." msgstr "Неважеки hub.topic „%s“. Групата не постои." #. TRANS: Client exception. %s is a feed URL. -#, php-format -msgid "Invalid hub.topic %s; people tag does not exist." +#, fuzzy, php-format +msgid "Invalid hub.topic %s; list does not exist." msgstr "!Неважечки hub.topic „%s“. Ознаката за луѓе не постои." #. TRANS: Client exception. @@ -276,7 +277,8 @@ msgstr "Не можев да го проверам профилот на OStatus msgid "Could not confirm remote profile address." msgstr "Не можев да ја потврдам адресата на далечинскиот профил." -msgid "OStatus people tag" +#, fuzzy +msgid "OStatus list" msgstr "Ознака за луѓе од OStatus" msgid "Empty or invalid feed id." @@ -307,6 +309,7 @@ msgstr "Неочекувано барање за претплата за %s." msgid "Unexpected unsubscribe request for %s." msgstr "Неочекувано барање за отпишување од претплата за %s." +#. TRANS: Client error. msgid "No such user." msgstr "Нема таков корисник." @@ -464,10 +467,12 @@ msgstr "Не ја распознавам забелешката со ID %s." msgid "Notice with ID %1$s not posted by %2$s." msgstr "Забелешката со ID %1$s не е објавена од %2$s." -msgid "Subscribe to people tag" -msgstr "Претплати се на ознака за луѓе" +#, fuzzy +msgid "Subscribe to list" +msgstr "Претплати се на %s" -msgid "Address of the OStatus people tag, like http://example.net/user/all/tag" +#, fuzzy +msgid "Address of the OStatus list, like http://example.net/user/all/tag" msgstr "" "Адреса на ознаката за луѓе од OStatus, како на пр. http://primer.net/" "korisnik/prekar." @@ -475,21 +480,22 @@ msgstr "" msgid "Continue" msgstr "Продолжи" -msgid "You are already subscribed to this people tag." -msgstr "Веќе сте претплатени на оваа ознака за луѓе." +#, fuzzy +msgid "You are already subscribed to this list." +msgstr "Веќе сте претплатени на овој корисник." -#. TRANS: Page title for OStatus remote people tag subscription form -msgid "Confirm subscription to remote people tag" +#. TRANS: Page title for OStatus remote list subscription form +#, fuzzy +msgid "Confirm subscription to remote list" msgstr "Потврди придружување кон ознаката на далечинската група" #. TRANS: Instructions for OStatus list subscription form. -#, fuzzy msgid "" "You can subscribe to lists from other supported sites. Paste the lists's URI " "below:" msgstr "" -"Можете да се претплаќате на ознаки за луѓе од други поддржани мреж. места. " -"Подолу прекопирајте го URI-то на профилот на ознаката." +"Можете да се претплаќате на списоци од други поддржани мрежни места. Подолу " +"прекопирајте го URI-то на списокот:" #. TRANS: Client error. msgid "No such group." @@ -524,36 +530,30 @@ msgstr "Не можам да го прочитам профилот за отк msgid "Could not remove remote user %1$s from group %2$s." msgstr "Не можев да го отстранам далечинскиот корисник %1$s од групата %2$s." -#, fuzzy msgid "No such list." -msgstr "Нема таков корисник." +msgstr "Нема таков список." -#, fuzzy msgid "Cannot accept remote posts for a remote list." -msgstr "Не можам да прифаќам далечински објави за далечинска група." +msgstr "Не можам да прифаќам далечински објави за далечински список." msgid "Cannot read profile to set up profile tag subscription." msgstr "" "Не можев да го прочитам профилот за да ја поставам претплатата на профилната " "ознака." -#, fuzzy msgid "Groups cannot subscribe to lists." -msgstr "На ознаки за луѓе не можат да се претплаќаат групи." +msgstr "Групите не можат да се претплаќаат на списоци." -#, fuzzy, php-format +#, php-format msgid "Could not subscribe remote user %1$s to list %2$s." -msgstr "" -"Не можев да го претплатам далечинскиот корисник %1$s на ознаката за луѓе %2" -"$s." +msgstr "Не можев да го претплатам далечинскиот корисник %1$s на списокот %2$s." -#, fuzzy msgid "Cannot read profile to cancel list membership." -msgstr "Не можам да го прочитам профилот за откажам членство во групата." +msgstr "Не можам да го прочитам профилот за откажам членство во списокот." -#, fuzzy, php-format +#, php-format msgid "Could not remove remote user %1$s from list %2$s." -msgstr "Не можев да го отстранам далечинскиот корисник %1$s од групата %2$s." +msgstr "Не можев да го отстранам далечинскиот корисник %1$s од списокот %2$s." #. TRANS: Client error. msgid "You can use the local subscription!" @@ -574,12 +574,12 @@ msgctxt "BUTTON" msgid "Join" msgstr "Зачлени се" -#. TRANS: Form legend. %1$s is a people tag, %2$s is a tagger's name. -#, php-format -msgid "Subscribe to people tagged %1$s by %2$s" +#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#, fuzzy, php-format +msgid "Subscribe to list %1$s by %2$s" msgstr "Претплата на корисници означени со %1$s од %2$s" -#. TRANS: Button text to subscribe to a people tag. +#. TRANS: Button text to subscribe to a list. #. TRANS: Button text to subscribe to a profile. msgctxt "BUTTON" msgid "Subscribe" @@ -610,6 +610,10 @@ msgstr "Вашата назнака (ID) на сметката (на пр. koris msgid "Must provide a remote profile." msgstr "Мора да наведете далечински профил." +#. TRANS: Client error. +msgid "No local user or group nickname provided." +msgstr "" + #. TRANS: Page title. msgid "OStatus Connect" msgstr "OStatus - Поврзување" @@ -698,6 +702,13 @@ msgstr "" msgid "Unable to fetch avatar from %s." msgstr "Не можам да го добијам аватарот од %s." +msgid "No author ID URI found." +msgstr "" + +#, fuzzy +msgid "No profile URI." +msgstr "Далечински профил" + #. TRANS: Exception. msgid "Local user cannot be referenced as remote." msgstr "Локалниот корисник не може да се наведува како далечински." @@ -706,10 +717,18 @@ msgstr "Локалниот корисник не може да се наведу msgid "Local group cannot be referenced as remote." msgstr "Локалната група не може да се наведува како далечинска." +#, fuzzy +msgid "Local list cannot be referenced as remote." +msgstr "Локалниот корисник не може да се наведува како далечински." + #. TRANS: Server exception. msgid "Cannot save local profile." msgstr "Не можам да го зачувам локалниот профил." +#, fuzzy +msgid "Cannot save local list." +msgstr "Не можам да го зачувам локалниот профил." + #. TRANS: Server exception. msgid "Cannot save OStatus profile." msgstr "Не можам да го зачувам профилот од OStatus." @@ -724,8 +743,8 @@ msgid "Could not save profile for \"%s\"." msgstr "Не можам да го зачувам профилот за „%s“." #. TRANS: Exception. %s is a webfinger address. -#, php-format -msgid "Could not save ostatus_profile for \"%s\"." +#, fuzzy, php-format +msgid "Could not save OStatus profile for \"%s\"." msgstr "Не можам да го зачувам ostatus_profile за „%s“." #. TRANS: Exception. %s is a webfinger address. @@ -831,21 +850,11 @@ msgstr "Оваа цел не разбира отстранување на озн msgid "Received a salmon slap from unidentified actor." msgstr "Примив Salmon-шамар од непознат учесник." -#~ msgid "Could not set up remote people tag subscription." -#~ msgstr "Не можев да ја поставам далечинската претплата на ознаки за луѓе." +#~ msgid "Unfollow people tag" +#~ msgstr "Престани следење на ознака за луѓе" -#~ msgid "No such people tag." -#~ msgstr "Нема таква ознака за луѓе." +#~ msgid "Subscribe to people tag" +#~ msgstr "Претплати се на ознака за луѓе" -#~ msgid "Cannot accept remote posts for a remote people tag." -#~ msgstr "" -#~ "Не можам да прифаќам далечински објави од далечинска ознака за луѓе." - -#~ msgid "Cannot read profile to cancel people tag membership." -#~ msgstr "" -#~ "Не можам да го прочитам профилот за да откажам членство на ознаката." - -#~ msgid "Could not remove remote user %1$s from people tag %2$s." -#~ msgstr "" -#~ "!Не можев да го отстранам далечинскиот корисник %1$s од ознаката за луѓе %" -#~ "2$s." +#~ msgid "You are already subscribed to this people tag." +#~ msgstr "Веќе сте претплатени на оваа ознака за луѓе." diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index ab77beb030..30e31431e8 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:50+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -121,24 +121,26 @@ msgid "%1$s has left group %2$s." msgstr "%1$s heeft de groep %2$s verlaten" #. TRANS: Exception thrown when setup of remote list subscription fails. -#, fuzzy msgid "Could not set up remote list subscription." msgstr "" -"Het was niet mogelijk het abonnement via een andere dienst in te stellen." +"Het was niet mogelijk het lijstabonnement via een andere dienst in te " +"stellen." #. TRANS: Title for remote follow list. msgctxt "TITLE" msgid "Follow list" msgstr "Op lijst abonneren" -#. TRANS: Exception thrown when subscription of remote people tag fails. -msgid "Failed subscribing to remote people tag." +#. TRANS: Exception thrown when subscription to remote list fails. +#, fuzzy +msgid "Failed subscribing to remote list." msgstr "" "Het was niet mogelijk toe abonneren op het persoonslabel van een andere " "dienst." -msgid "Unfollow people tag" -msgstr "Persoonslabel niet langer volgen" +#, fuzzy +msgid "Unfollow list" +msgstr "Op lijst abonneren" #, php-format msgid "%1$s stopped following the list %2$s by %3$s." @@ -148,7 +150,7 @@ msgctxt "TITLE" msgid "Tag" msgstr "Label" -#, fuzzy, php-format +#, php-format msgid "%1$s listed %2$s in the list %3$s." msgstr "%1$s heeft %2$s in de lijst %3$s geplaatst." @@ -246,8 +248,8 @@ msgid "Invalid hub.topic \"%s\". Group does not exist." msgstr "Ongeldig hub.topic \"%s\". De groep bestaat niet." #. TRANS: Client exception. %s is a feed URL. -#, php-format -msgid "Invalid hub.topic %s; people tag does not exist." +#, fuzzy, php-format +msgid "Invalid hub.topic %s; list does not exist." msgstr "Ongeldig hub.topic \"%s\". Het persoonslabel bestaat niet." #. TRANS: Client exception. @@ -289,7 +291,8 @@ msgid "Could not confirm remote profile address." msgstr "" "Het was niet mogelijk het profieladres bij de andere dienst te bevestigen." -msgid "OStatus people tag" +#, fuzzy +msgid "OStatus list" msgstr "OStatus-persoonslabel" msgid "Empty or invalid feed id." @@ -320,6 +323,7 @@ msgstr "Onverwacht abonneringsverzoek voor %s." msgid "Unexpected unsubscribe request for %s." msgstr "Onverwacht verzoek om abonnement op te hebben voor %s." +#. TRANS: Client error. msgid "No such user." msgstr "Deze gebruiker bestaat niet." @@ -482,10 +486,12 @@ msgstr "De mededeling met ID %s is onbekend." msgid "Notice with ID %1$s not posted by %2$s." msgstr "De mededeling met ID %1$s is niet geplaatst foor %2$s." -msgid "Subscribe to people tag" -msgstr "Abonneren op persoonslabel" +#, fuzzy +msgid "Subscribe to list" +msgstr "Abonneren op %s" -msgid "Address of the OStatus people tag, like http://example.net/user/all/tag" +#, fuzzy +msgid "Address of the OStatus list, like http://example.net/user/all/tag" msgstr "" "Het adres voor het OStatus-persoonslabel. Bijvoorbeeld http://example.net/" "user/all/tag." @@ -493,21 +499,22 @@ msgstr "" msgid "Continue" msgstr "Doorgaan" -msgid "You are already subscribed to this people tag." -msgstr "U bent al geabonneerd op dit persoonslabel." +#, fuzzy +msgid "You are already subscribed to this list." +msgstr "U bent al geabonneerd op deze gebruiker." -#. TRANS: Page title for OStatus remote people tag subscription form -msgid "Confirm subscription to remote people tag" +#. TRANS: Page title for OStatus remote list subscription form +#, fuzzy +msgid "Confirm subscription to remote list" msgstr "Bevestig het abonneren op een persoonslabel bij de andere dienst" #. TRANS: Instructions for OStatus list subscription form. -#, fuzzy msgid "" "You can subscribe to lists from other supported sites. Paste the lists's URI " "below:" msgstr "" -"U kunt abonneren op persoonslabels van andere ondersteunde sites. Plak " -"hieronder de URI van het label:" +"U kunt abonneren op lijsten van andere ondersteunde sites. Plak hieronder de " +"URI van de lijst:" #. TRANS: Client error. msgid "No such group." @@ -548,40 +555,36 @@ msgstr "" "Het was niet mogelijk gebruiker %1$s van een andere dienst uit de groep %2$s " "te verwijderen." -#, fuzzy msgid "No such list." -msgstr "Deze gebruiker bestaat niet." +msgstr "De lijst bestaat niet." -#, fuzzy msgid "Cannot accept remote posts for a remote list." msgstr "" -"Berichten van andere diensten voor groepen bij andere diensten worden niet " +"Berichten van andere diensten voor lijsten bij andere diensten worden niet " "geaccepteerd." msgid "Cannot read profile to set up profile tag subscription." msgstr "" "Het profiel om te abonneren op een persoonslabel kon niet gelezen worden." -#, fuzzy msgid "Groups cannot subscribe to lists." -msgstr "Groepen kunnen niet abonneren op persoonslabels." +msgstr "Groepen kunnen niet abonneren op lijsten." -#, fuzzy, php-format +#, php-format msgid "Could not subscribe remote user %1$s to list %2$s." msgstr "" -"Het was niet mogelijk om gebruiker %1$s via een andere dienst te abonneren " -"op het persoonslabel %2$s." +"Het was niet mogelijk om gebruiker %1$s van een andere dienst te abonneren " +"op de lijst %2$s." -#, fuzzy msgid "Cannot read profile to cancel list membership." msgstr "" -"Het profiel om groepslidmaatschap te annuleren kon niet gelezen worden." +"Het profiel om het lijstlidmaatschap te annuleren kon niet gelezen worden." -#, fuzzy, php-format +#, php-format msgid "Could not remove remote user %1$s from list %2$s." msgstr "" -"Het was niet mogelijk gebruiker %1$s van een andere dienst uit de groep %2$s " -"te verwijderen." +"!Het was niet mogelijk gebruiker %1$s van een andere dienst uit de lijst %2" +"$s te verwijderen." #. TRANS: Client error. msgid "You can use the local subscription!" @@ -602,12 +605,12 @@ msgctxt "BUTTON" msgid "Join" msgstr "Toetreden" -#. TRANS: Form legend. %1$s is a people tag, %2$s is a tagger's name. -#, php-format -msgid "Subscribe to people tagged %1$s by %2$s" +#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#, fuzzy, php-format +msgid "Subscribe to list %1$s by %2$s" msgstr "Abonneren op mensen met het label %1$s door %2$s" -#. TRANS: Button text to subscribe to a people tag. +#. TRANS: Button text to subscribe to a list. #. TRANS: Button text to subscribe to a profile. msgctxt "BUTTON" msgid "Subscribe" @@ -638,6 +641,10 @@ msgstr "Uw gebruikers-ID (bv. gebruiker@identi.ca)." msgid "Must provide a remote profile." msgstr "Er moet een profiel bij een andere dienst opgegeven worden." +#. TRANS: Client error. +msgid "No local user or group nickname provided." +msgstr "" + #. TRANS: Page title. msgid "OStatus Connect" msgstr "OStatuskoppeling" @@ -727,6 +734,13 @@ msgstr "" msgid "Unable to fetch avatar from %s." msgstr "Het was niet mogelijk de avatar op te halen van %s." +msgid "No author ID URI found." +msgstr "" + +#, fuzzy +msgid "No profile URI." +msgstr "Profiel bij een andere dienst" + #. TRANS: Exception. msgid "Local user cannot be referenced as remote." msgstr "" @@ -739,10 +753,20 @@ msgstr "" "Naar een lokale groep kan niet verwezen worden alsof die zich bij een andere " "dienst bevindt." +#, fuzzy +msgid "Local list cannot be referenced as remote." +msgstr "" +"Naar een lokale gebruiker kan niet verwezen worden alsof die zich bij een " +"andere dienst bevindt." + #. TRANS: Server exception. msgid "Cannot save local profile." msgstr "Het was niet mogelijk het lokale profiel op te slaan." +#, fuzzy +msgid "Cannot save local list." +msgstr "Het was niet mogelijk het lokale profiel op te slaan." + #. TRANS: Server exception. msgid "Cannot save OStatus profile." msgstr "Het was niet mogelijk het Ostatusprofiel op te slaan." @@ -757,8 +781,8 @@ msgid "Could not save profile for \"%s\"." msgstr "Het was niet mogelijk het profiel voor \"%s\" op te slaan." #. TRANS: Exception. %s is a webfinger address. -#, php-format -msgid "Could not save ostatus_profile for \"%s\"." +#, fuzzy, php-format +msgid "Could not save OStatus profile for \"%s\"." msgstr "Het was niet mogelijk het OStatusprofiel voor \"%s\" op te slaan." #. TRANS: Exception. %s is a webfinger address. @@ -866,25 +890,11 @@ msgstr "Deze bestemming begrijpt evenementen ontlabelen niet." msgid "Received a salmon slap from unidentified actor." msgstr "Er is een Salmonslap ontvangen van een niet-geïdentificeerde actor." -#~ msgid "Could not set up remote people tag subscription." -#~ msgstr "" -#~ "Het was niet mogelijk het abonnement op een persoonslabel via een andere " -#~ "dienst in te stellen." +#~ msgid "Unfollow people tag" +#~ msgstr "Persoonslabel niet langer volgen" -#~ msgid "No such people tag." -#~ msgstr "Het opgegeven persoonslabel bestaat niet." +#~ msgid "Subscribe to people tag" +#~ msgstr "Abonneren op persoonslabel" -#~ msgid "Cannot accept remote posts for a remote people tag." -#~ msgstr "" -#~ "Berichten van andere diensten voor persoonslabels bij andere diensten " -#~ "worden niet geaccepteerd." - -#~ msgid "Cannot read profile to cancel people tag membership." -#~ msgstr "" -#~ "Het profiel om een persoonslabelabonnement te annuleren kon niet gelezen " -#~ "worden." - -#~ msgid "Could not remove remote user %1$s from people tag %2$s." -#~ msgstr "" -#~ "Het was niet mogelijk gebruiker %1$s van een andere dienst uit te " -#~ "schrijven van het persoonslabel %2$s." +#~ msgid "You are already subscribed to this people tag." +#~ msgstr "U bent al geabonneerd op dit persoonslabel." diff --git a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po index 17795616ae..2b193e1cb9 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:51+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -117,21 +117,22 @@ msgid "%1$s has left group %2$s." msgstr "Lumisan si %1$s magmula sa pangkat na %2$s." #. TRANS: Exception thrown when setup of remote list subscription fails. -#, fuzzy msgid "Could not set up remote list subscription." -msgstr "Hindi maihanda ang malayuang pagpapasipi." +msgstr "Hindi maihanda ang pagpapasipi ng malayong talaan." #. TRANS: Title for remote follow list. msgctxt "TITLE" msgid "Follow list" msgstr "Sundan ang talaan" -#. TRANS: Exception thrown when subscription of remote people tag fails. -msgid "Failed subscribing to remote people tag." +#. TRANS: Exception thrown when subscription to remote list fails. +#, fuzzy +msgid "Failed subscribing to remote list." msgstr "Nabigo sa pagpapasipi sa malayong tatak ng mga tao." -msgid "Unfollow people tag" -msgstr "Huwag sundan ang tatak ng mga tao" +#, fuzzy +msgid "Unfollow list" +msgstr "Sundan ang talaan" #, php-format msgid "%1$s stopped following the list %2$s by %3$s." @@ -141,9 +142,9 @@ msgctxt "TITLE" msgid "Tag" msgstr "Tatak" -#, fuzzy, php-format +#, php-format msgid "%1$s listed %2$s in the list %3$s." -msgstr "Tinatakan ni %1$s si %2$s sa loob ng talaang %3$s." +msgstr "Itinala ni %1$s si %2$s sa loob ng talaang %3$s." #, php-format msgid "" @@ -244,8 +245,8 @@ msgstr "" "Hindi katanggap-tanggap na hub.topic na \"%s\". Hindi umiiral ang pangkat." #. TRANS: Client exception. %s is a feed URL. -#, php-format -msgid "Invalid hub.topic %s; people tag does not exist." +#, fuzzy, php-format +msgid "Invalid hub.topic %s; list does not exist." msgstr "" "Hindi katanggap-tanggap na hub.topic na \"%s\"; hindi umiiral ang tatak ng " "mga tao." @@ -288,7 +289,8 @@ msgstr "Hindi makita ang balangkas ng akawnt ng OStatus." msgid "Could not confirm remote profile address." msgstr "Hindi matiyak ang malayong tirahan ng balangkas." -msgid "OStatus people tag" +#, fuzzy +msgid "OStatus list" msgstr "Tatak ng mga tao sa OStatus" msgid "Empty or invalid feed id." @@ -319,6 +321,7 @@ msgstr "Hindi inaasahang kahilingan ng pagpapasipi para sa %s." msgid "Unexpected unsubscribe request for %s." msgstr "Hindi inaasahang kahilingan ng hindi pagpapasipi para sa %s." +#. TRANS: Client error. msgid "No such user." msgstr "Walang ganyang tagagamit." @@ -479,10 +482,12 @@ msgstr "Hindi nalalaman ang pabatid na may ID na %s." msgid "Notice with ID %1$s not posted by %2$s." msgstr "Hindi ipinaskil ni %2$s ang pabatid na may ID na %1$s." -msgid "Subscribe to people tag" -msgstr "Tumanggap ng sipi mula sa tatak ng mga tao" +#, fuzzy +msgid "Subscribe to list" +msgstr "Tumanggap ng sipi mula sa %s" -msgid "Address of the OStatus people tag, like http://example.net/user/all/tag" +#, fuzzy +msgid "Address of the OStatus list, like http://example.net/user/all/tag" msgstr "" "Tirahan ng tatak ng mga pangkat ng OStatus, katulad ng http://example.net/" "user/all/tag" @@ -490,21 +495,22 @@ msgstr "" msgid "Continue" msgstr "Ipagpatuloy" -msgid "You are already subscribed to this people tag." -msgstr "Tumatanggap ka na ng sipi mula sa tatak na ito ng mga tao." +#, fuzzy +msgid "You are already subscribed to this list." +msgstr "Tumatanggap ka na ng sipi mula sa tagagamit na ito." -#. TRANS: Page title for OStatus remote people tag subscription form -msgid "Confirm subscription to remote people tag" +#. TRANS: Page title for OStatus remote list subscription form +#, fuzzy +msgid "Confirm subscription to remote list" msgstr "Tiyakin ang pagsali sa tatak ng malalayong mga tao" #. TRANS: Instructions for OStatus list subscription form. -#, fuzzy msgid "" "You can subscribe to lists from other supported sites. Paste the lists's URI " "below:" msgstr "" -"Maaari kang magpasipi sa mga tatak ng mga tao mula sa iba pang mga sityong " -"tinatangkilik. Idikit ang tirahan o URI ng balangkas ng tatak sa ibaba:" +"Maaari kang magpasipi sa mga talaan mula sa iba pang mga sityong " +"tinatangkilik. Idikit ang tirahan o URI ng balangkas ng talaang nasa ibaba:" #. TRANS: Client error. msgid "No such group." @@ -541,38 +547,31 @@ msgid "Could not remove remote user %1$s from group %2$s." msgstr "" "Hindi matanggal ang malayong tagagamit na si %1$s mula sa pangkat na %2$s." -#, fuzzy msgid "No such list." -msgstr "Walang ganyang tagagamit." +msgstr "Walang ganyang talaan." -#, fuzzy msgid "Cannot accept remote posts for a remote list." msgstr "" -"Hindi matanggap ang malalayong mga paskil para sa isang malayong pangkat." +"Hindi matanggap ang malalayong mga paskil para sa isang malayong talaan." msgid "Cannot read profile to set up profile tag subscription." msgstr "" "Hindi mabasa ang balangkas upang maihanda ang tatak ng pagsapi sa pangkat." -#, fuzzy msgid "Groups cannot subscribe to lists." -msgstr "Ang mga pangkat ay hindi maaaring sumipi sa mga tatak ng mga tao." +msgstr "Ang mga pangkat ay hindi maaaring sumipi sa mga talaan." -#, fuzzy, php-format +#, php-format msgid "Could not subscribe remote user %1$s to list %2$s." -msgstr "" -"Hindi mapasipian ang malayong tagagamit na si %1$s sa tatak ng mga tao na %2" -"$s." +msgstr "Hindi mapasipian ang malayong tagagamit na si %1$s sa talaang %2$s." -#, fuzzy msgid "Cannot read profile to cancel list membership." -msgstr "" -"Hindi mabasa ang balangkas upang huwag maituloy ang kasapian sa pangkat." +msgstr "Hindi mabasa ang balangkas upang huwag ituloy ang kasapian sa talaan." -#, fuzzy, php-format +#, php-format msgid "Could not remove remote user %1$s from list %2$s." msgstr "" -"Hindi matanggal ang malayong tagagamit na si %1$s mula sa pangkat na %2$s." +"Hindi matanggal ang malayong tagagamit na si %1$s mula sa talaang %2$s." #. TRANS: Client error. msgid "You can use the local subscription!" @@ -593,12 +592,12 @@ msgctxt "BUTTON" msgid "Join" msgstr "Sumali" -#. TRANS: Form legend. %1$s is a people tag, %2$s is a tagger's name. -#, php-format -msgid "Subscribe to people tagged %1$s by %2$s" +#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#, fuzzy, php-format +msgid "Subscribe to list %1$s by %2$s" msgstr "Makisipi sa mga taong natatakan ni %2$s ng %1$s" -#. TRANS: Button text to subscribe to a people tag. +#. TRANS: Button text to subscribe to a list. #. TRANS: Button text to subscribe to a profile. msgctxt "BUTTON" msgid "Subscribe" @@ -629,6 +628,10 @@ msgstr "ID ng akawnt mo (katulad ng user@identi.ca)." msgid "Must provide a remote profile." msgstr "Dapat na magbigay ng isang malayong balangkas." +#. TRANS: Client error. +msgid "No local user or group nickname provided." +msgstr "" + #. TRANS: Page title. msgid "OStatus Connect" msgstr "Ugnay sa OStatus" @@ -725,6 +728,13 @@ msgstr "" msgid "Unable to fetch avatar from %s." msgstr "Hindi nagawang damputin ang huwaran mula sa %s." +msgid "No author ID URI found." +msgstr "" + +#, fuzzy +msgid "No profile URI." +msgstr "Malayong balangkas" + #. TRANS: Exception. msgid "Local user cannot be referenced as remote." msgstr "Hindi masanggunian bilang malayo ang katutubong tagagamit." @@ -733,10 +743,18 @@ msgstr "Hindi masanggunian bilang malayo ang katutubong tagagamit." msgid "Local group cannot be referenced as remote." msgstr "Hindi masanggunian bilang malayo ang katutubong pangkat." +#, fuzzy +msgid "Local list cannot be referenced as remote." +msgstr "Hindi masanggunian bilang malayo ang katutubong tagagamit." + #. TRANS: Server exception. msgid "Cannot save local profile." msgstr "Hindi masagip ang katutubong balangkas." +#, fuzzy +msgid "Cannot save local list." +msgstr "Hindi masagip ang katutubong balangkas." + #. TRANS: Server exception. msgid "Cannot save OStatus profile." msgstr "Hindi masagip ang balangkas ng OStatus." @@ -751,8 +769,8 @@ msgid "Could not save profile for \"%s\"." msgstr "Hindi masagip ang balangkas para sa \"%s\"." #. TRANS: Exception. %s is a webfinger address. -#, php-format -msgid "Could not save ostatus_profile for \"%s\"." +#, fuzzy, php-format +msgid "Could not save OStatus profile for \"%s\"." msgstr "Hindi masagip ang ostatus_profile para sa \"%s\"." #. TRANS: Exception. %s is a webfinger address. @@ -865,24 +883,11 @@ msgstr "" msgid "Received a salmon slap from unidentified actor." msgstr "Tumanggap ng isang sampal ng salmon mula sa hindi nakikilalang aktor." -#~ msgid "Could not set up remote people tag subscription." -#~ msgstr "" -#~ "Hindi maihanda ang malayuang pagpapasipi ng malayong tatak ng mga tao." +#~ msgid "Unfollow people tag" +#~ msgstr "Huwag sundan ang tatak ng mga tao" -#~ msgid "No such people tag." -#~ msgstr "Walang ganyang tatak ng mga pangkat." +#~ msgid "Subscribe to people tag" +#~ msgstr "Tumanggap ng sipi mula sa tatak ng mga tao" -#~ msgid "Cannot accept remote posts for a remote people tag." -#~ msgstr "" -#~ "Hindi matanggap ang malalayong mga paskil para sa isang tatak ng malayong " -#~ "pangkat." - -#~ msgid "Cannot read profile to cancel people tag membership." -#~ msgstr "" -#~ "Hindi mabasa ang balangkas upang huwag maituloy ang tatak ng kasapian sa " -#~ "mga tao." - -#~ msgid "Could not remove remote user %1$s from people tag %2$s." -#~ msgstr "" -#~ "Hindi matanggal ang malayong tagagamit na si %1$s mula sa tatak ng mga " -#~ "tao na %2$s." +#~ msgid "You are already subscribed to this people tag." +#~ msgstr "Tumatanggap ka na ng sipi mula sa tatak na ito ng mga tao." diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 21dd984274..856d4fcbb9 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:51+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:08+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:41+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -134,13 +134,14 @@ msgctxt "TITLE" msgid "Follow list" msgstr "" -#. TRANS: Exception thrown when subscription of remote people tag fails. +#. TRANS: Exception thrown when subscription to remote list fails. #, fuzzy -msgid "Failed subscribing to remote people tag." +msgid "Failed subscribing to remote list." msgstr "Помилка приєднання до віддаленої спільноти." -msgid "Unfollow people tag" -msgstr "" +#, fuzzy +msgid "Unfollow list" +msgstr "Не читати" #, fuzzy, php-format msgid "%1$s stopped following the list %2$s by %3$s." @@ -245,7 +246,7 @@ msgstr "hub.topic «%s» невірний. Спільноти не існує." #. TRANS: Client exception. %s is a feed URL. #, fuzzy, php-format -msgid "Invalid hub.topic %s; people tag does not exist." +msgid "Invalid hub.topic %s; list does not exist." msgstr "hub.topic «%s» невірний. Спільноти не існує." #. TRANS: Client exception. @@ -292,7 +293,7 @@ msgid "Could not confirm remote profile address." msgstr "Не вдалося підтвердити адресу віддаленого профілю." #, fuzzy -msgid "OStatus people tag" +msgid "OStatus list" msgstr "З’єднання OStatus" msgid "Empty or invalid feed id." @@ -323,6 +324,7 @@ msgstr "Несподіваний запит підписки для %s." msgid "Unexpected unsubscribe request for %s." msgstr "Несподіваний запит щодо скасування підписки для %s." +#. TRANS: Client error. msgid "No such user." msgstr "Такого користувача немає." @@ -489,11 +491,11 @@ msgid "Notice with ID %1$s not posted by %2$s." msgstr "Допис з ідентифікатором %1$s було надіслано не %2$s." #, fuzzy -msgid "Subscribe to people tag" -msgstr "Підписатися до користувача" +msgid "Subscribe to list" +msgstr "Підписатися до %s" #, fuzzy -msgid "Address of the OStatus people tag, like http://example.net/user/all/tag" +msgid "Address of the OStatus list, like http://example.net/user/all/tag" msgstr "" "Адреса спільноти згідно протоколу OStatus, наприклад http://example.net/" "group/nickname." @@ -503,12 +505,12 @@ msgid "Continue" msgstr "Продовжити" #, fuzzy -msgid "You are already subscribed to this people tag." +msgid "You are already subscribed to this list." msgstr "Ви вже підписані до цього користувача." -#. TRANS: Page title for OStatus remote people tag subscription form +#. TRANS: Page title for OStatus remote list subscription form #, fuzzy -msgid "Confirm subscription to remote people tag" +msgid "Confirm subscription to remote list" msgstr "Підтвердження приєднання до віддаленої спільноти" #. TRANS: Instructions for OStatus list subscription form. @@ -610,12 +612,12 @@ msgctxt "BUTTON" msgid "Join" msgstr "Приєднатися" -#. TRANS: Form legend. %1$s is a people tag, %2$s is a tagger's name. -#, php-format -msgid "Subscribe to people tagged %1$s by %2$s" -msgstr "" +#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#, fuzzy, php-format +msgid "Subscribe to list %1$s by %2$s" +msgstr "Підписатися до %s" -#. TRANS: Button text to subscribe to a people tag. +#. TRANS: Button text to subscribe to a list. #. TRANS: Button text to subscribe to a profile. msgctxt "BUTTON" msgid "Subscribe" @@ -647,6 +649,10 @@ msgstr "Ідентифікатор вашого акаунту (щось на з msgid "Must provide a remote profile." msgstr "Мусите зазначити віддалений профіль." +#. TRANS: Client error. +msgid "No local user or group nickname provided." +msgstr "" + #. TRANS: Page title. msgid "OStatus Connect" msgstr "З’єднання OStatus" @@ -739,6 +745,13 @@ msgstr "Намагаюся оновити аватару для не збере msgid "Unable to fetch avatar from %s." msgstr "Неможливо завантажити аватару з %s." +msgid "No author ID URI found." +msgstr "" + +#, fuzzy +msgid "No profile URI." +msgstr "Приєднатися до віддаленої спільноти не вдалося!" + #. TRANS: Exception. #, fuzzy msgid "Local user cannot be referenced as remote." @@ -749,11 +762,19 @@ msgstr "Місцевий користувач не може бути зазна msgid "Local group cannot be referenced as remote." msgstr "Локальну спільноту не можна зазначити у якості віддаленої." +#, fuzzy +msgid "Local list cannot be referenced as remote." +msgstr "Місцевий користувач не може бути зазначеним у якості віддаленого." + #. TRANS: Server exception. #, fuzzy msgid "Cannot save local profile." msgstr "Не вдається зберегти місцевий профіль." +#, fuzzy +msgid "Cannot save local list." +msgstr "Не вдається зберегти місцевий профіль." + #. TRANS: Server exception. #, fuzzy msgid "Cannot save OStatus profile." @@ -770,7 +791,7 @@ msgstr "Не можу зберегти профіль для «%s»." #. TRANS: Exception. %s is a webfinger address. #, fuzzy, php-format -msgid "Could not save ostatus_profile for \"%s\"." +msgid "Could not save OStatus profile for \"%s\"." msgstr "Не можу зберегти профіль OStatus для «%s»." #. TRANS: Exception. %s is a webfinger address. @@ -886,24 +907,9 @@ msgid "Received a salmon slap from unidentified actor." msgstr "Отримано ляпаса від невизначеного учасника за протоколом Salmon." #, fuzzy -#~ msgid "Could not set up remote people tag subscription." -#~ msgstr "Не вдалося створити віддалену підписку." +#~ msgid "Subscribe to people tag" +#~ msgstr "Підписатися до користувача" #, fuzzy -#~ msgid "No such people tag." -#~ msgstr "Такої спільноти немає." - -#, fuzzy -#~ msgid "Cannot accept remote posts for a remote people tag." -#~ msgstr "" -#~ "Не можу узгодити віддалену пересилку дописів до віддаленої спільноти." - -#, fuzzy -#~ msgid "Cannot read profile to cancel people tag membership." -#~ msgstr "" -#~ "Не вдається прочитати профіль користувача, щоб скасувати його перебування " -#~ "у спільноті." - -#, fuzzy -#~ msgid "Could not remove remote user %1$s from people tag %2$s." -#~ msgstr "Не вдалось видалити віддаленого користувача %1$s зі спільноти %2$s." +#~ msgid "You are already subscribed to this people tag." +#~ msgstr "Ви вже підписані до цього користувача." diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index a78778b724..a491ddd774 100644 --- a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot +++ b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po index 400a3a6c58..f3fcf83770 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index 3279e07ee7..fc18148508 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 20de1f9bee..a243444af6 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index f67ac70ca9..7def791038 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index ace6329f10..4d740c9530 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 16f582d5d9..a74eaf802e 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 44a0c629e4..8a7108f92f 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0e6c15c094..79ff56d926 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ad8163d46b..183e32608b 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index a973d2e548..70d407e04e 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index 6be8977e4d..d71e524fe1 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 10cf4af979..2d570eb67b 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8d15957978..60ccda2614 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:03+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index 45f60bb651..6550948eab 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:04+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:28+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:09+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index dc5d97964a..0b07612b30 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index 3a7a312787..3bd54c6853 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:28+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:35+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po index 98e927714f..391665fb1f 100644 --- a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:35+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index f8496b63e2..a0064f308e 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:35+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index 97be5d6564..4817fcceb1 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:35+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 b51bef4958..cb572dafad 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 1e329b774e..dd628a0f32 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 909e10659e..33c6be0e38 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6f24c2090f..3cff730daa 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:36+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e9c0acfe0d..079a10382a 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:36+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ee3174ed17..ce0b98d674 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:34+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:38+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index e351b0dcd8..7f6797b81c 100644 --- a/plugins/OpenX/locale/OpenX.pot +++ b/plugins/OpenX/locale/OpenX.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po index 2d6ca5e2ab..f3d9aa7944 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:38+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index 0e95d7ebea..e5b88627bf 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:38+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index b8f09527ce..0bb2cbb107 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index 9fcf2df335..ef0330d64f 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:38+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index f221964e2a..067d3ef89f 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index 003b3adbba..6980d459fe 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:38+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po index fa2c1f8746..7d5a224afc 100644 --- a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index f923f07d28..82fd7d638f 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:35+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index 711a3a0f17..b560598cfc 100644 --- a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot +++ b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po index a6d29ea521..9e7a186c34 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:51+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index 9b78b3e9d3..652dac764c 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:26+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:51+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index fc2ab88e5a..e262b6f042 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:51+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index 2d7cb96009..49e4df7f33 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:51+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index eaa09eadba..8f44ab0a89 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:51+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index b9da93df58..e51c44aa63 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:51+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index 1f10aa42e4..ea1561a43e 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:51+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index 7296695093..4fab32adba 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:52+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index 235869c14c..51207b7c40 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:52+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index a334483856..2c1cab356d 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:52+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index e5d11991fb..6ae47f9d75 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:52+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index 4ee4811c45..0a0496740d 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:52+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c0a646e6af..5652f1b7cb 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:52+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 5a29eb6d81..60e7f2f49d 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:27+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:52+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:25+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/Poll/locale/Poll.pot b/plugins/Poll/locale/Poll.pot index a26808519c..56d59b71d8 100644 --- a/plugins/Poll/locale/Poll.pot +++ b/plugins/Poll/locale/Poll.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index b92972de59..f01205ff98 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index d975b26e6d..404a10bb57 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index eb40f8fed0..b1aec6107a 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index e583c3f2c9..8a3f7142c7 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index 91907cf80c..9e2cf34905 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:29+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 25550db400..ce2f118ec5 100644 --- a/plugins/PostDebug/locale/PostDebug.pot +++ b/plugins/PostDebug/locale/PostDebug.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po index 3395009d4b..e71b249ec4 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index 83ab8f0ff6..35d361b1f6 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index a1eca36ad8..5508db99ab 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index 50f8c73316..6d8933d4d5 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index 403a98bf51..0992c4d44d 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:54+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index 771b57bd82..ace39f4a71 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 858dc3877c..12c92d7528 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index b300657ce6..862df034c7 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 777805afe1..f0054dc9b6 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index ff9d538e87..e8eee2f916 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21: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: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index cfb0ee296f..8c79ced058 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index 9e93180b36..386e143289 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index 925d0821c1..a7ddaf68a0 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 874a76b435..c01ef3de8f 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 91a370685a..7f16699142 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 328a5398fe..4841704d5e 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:30+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:30+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 fed0ea984a..353c697111 100644 --- a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot +++ b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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 d6c503666b..e2dbf9e6e7 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index c1ff8a52b4..97d00c7cd5 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:55+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index b0e10c8973..7329c02e86 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 68f034ef92..858c1e5167 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 7f42d55d5c..923ba89274 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 b25afd9fab..768362c4ea 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 32ca5c45ee..f47f35e571 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f6dd4a216c..cb230e1d7b 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 00af4b116e..4537b45505 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index a6e1a589a4..ba335f8579 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po index b29748770c..535915b17f 100644 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index 560e4db534..5b146b68b1 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 74c5f0774b..a56fdc31a0 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:31+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:56+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:51+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 adcba9e168..2877cecd9f 100644 --- a/plugins/PtitUrl/locale/PtitUrl.pot +++ b/plugins/PtitUrl/locale/PtitUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po index 81a6e4ff66..78f5002ede 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 0f619704bb..c4f7e1f812 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index 4df7cf4d4d..06274ac12f 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index 9b1547a28f..9113f0744a 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index 1f2985f5d5..38939af1a0 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index 09212c0087..3105664360 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index 805d4630bb..35db9e8e4b 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e28f251003..ddc343e08b 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 7f69e7ddde..b573a4d828 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 05d240abb6..b7b0153dae 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 288904cba0..ed30408a55 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index c91aa9bd0c..fa4264dffc 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index 4ff2e6f4f2..fa1d4b1cdf 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index 450b1c1ab5..9025617393 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f2625e370d..7d11f6eeab 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f429ed8fb5..8f1a6973de 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:32+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:21:57+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:31+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/QnA/locale/QnA.pot b/plugins/QnA/locale/QnA.pot index 174e53aa7e..aecd3361a6 100644 --- a/plugins/QnA/locale/QnA.pot +++ b/plugins/QnA/locale/QnA.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po index c285b0b85d..8fc941ae7a 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:00+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po index 25259c50aa..2e6bba4ec3 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:00+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po index b63661b2e2..59a3ba4e5d 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po index 8743d7717e..2aa722bfe5 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:35+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:00+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po index ad0420a1d4..88303b3cbd 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:36+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:00+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 532cc70fb1..9f58180582 100644 --- a/plugins/RSSCloud/locale/RSSCloud.pot +++ b/plugins/RSSCloud/locale/RSSCloud.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po index f7eb3717ab..328ff11b14 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:07+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index f9f728d852..71ea155b70 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:08+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 aa1e1956fa..2649a1467a 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 62937b4b81..682f535dcf 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 73e3af031c..96ef8a5e1a 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 32b9d14f97..5da380d122 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 7d90fc662a..d9e75dbd63 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:42+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/Realtime/locale/Realtime.pot b/plugins/Realtime/locale/Realtime.pot index a171b910f0..74cf3b5272 100644 --- a/plugins/Realtime/locale/Realtime.pot +++ b/plugins/Realtime/locale/Realtime.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po index 7e6f53c9ca..750f449a5d 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:36+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:01+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index e175363569..3d2e7916c8 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:36+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:01+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index eff283d2e8..cc835aa453 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:36+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index 26407c8ffa..1ac21ad334 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:36+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:01+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index 97ed1860f6..af83076936 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:36+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:01+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index ce6245fe7c..b7701e2e54 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:36+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:01+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index ccf73bedd8..bb9942a4f8 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:36+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index e3f71cb3de..050dfa2240 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index 9103a842b7..5f85dbe2a0 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index c25eec9657..587e794fb9 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po index b24e02af65..37979bf4ce 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index d667770381..b5984979fe 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index 7976411e55..9e88fd9e60 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:00:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index 04ecfde1b1..76ef8e7cb4 100644 --- a/plugins/Recaptcha/locale/Recaptcha.pot +++ b/plugins/Recaptcha/locale/Recaptcha.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index ddc5f541c1..d26ccdbaca 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index 6964153e7a..082a5b4e41 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index 0b04c30501..b9e8b8c533 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:02+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index 08629faf89..4093ef133c 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:03+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 65723c9250..cd0d362b95 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:37+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:03+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 898530039c..b16cebe2f0 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:03+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 bb4b3f44f8..79cd858d31 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:03+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index cfa6816919..f80ee9ca4d 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:03+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index c8e8e9327b..a4bff5bed2 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:03+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po index 9e3e8e5c81..9768f76262 100644 --- a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:58:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:03+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\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 dc84a895b0..61c3c05ad2 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:03+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 bae74fcc6e..51eb3fa6d4 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:03+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-03-18 20:08:33+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:53+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8d65900cac..49277bee72 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index e464666751..73bef77b19 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:04+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index 418bfcbf7b..6f456f6438 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:04+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0487e9e616..f343a05353 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:04+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 625c3cb05c..d2fb856daf 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:38+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:04+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0483f26e60..6933a8a22f 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:39+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:04+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ee6d1e1741..0519839b7d 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:39+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:04+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0c5e6b867a..52f0dee75b 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:39+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:04+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 adf334b45c..2da662c76b 100644 --- a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot +++ b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index 2b11eba6d3..89bd324748 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:05+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 24bb83c167..76c45f9e28 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:05+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c2da8477f1..0c16924119 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 5245d2632e..e271be64d0 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8a43e851da..79e8e8c966 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 d929010a4c..803858f74a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot +++ b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po index b72a107163..a8ed880aab 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:40+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index f0f750bef8..7199bf8095 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index 3c54f0ab6c..f9ce1da5d4 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index 6ab582fa8a..872db9bcb2 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index 26185aabc6..41e20d3144 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index 918ac1d4aa..bfba426b3c 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 09a454e67e..ae0bafc9e9 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index e73311ad12..362c2ab137 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index 25cdfff73f..949a53f049 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index 20e55974a7..0bfe3525ec 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index 97040b59b8..64f15260e8 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c647726318..665f1f948e 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:41+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:06+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:08:36+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/SQLProfile/locale/SQLProfile.pot b/plugins/SQLProfile/locale/SQLProfile.pot index bb4a1614df..92bb9463a3 100644 --- a/plugins/SQLProfile/locale/SQLProfile.pot +++ b/plugins/SQLProfile/locale/SQLProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po index 0623b72237..827f5dac9c 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index 6d2eff58dd..390cb94693 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index 4a3ad6b6a3..fff247cf05 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index 51b8bcd82c..f97acdf02c 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index 9f19791014..556ca638e7 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index d83aabbfb4..c201861d15 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:19+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index 5b964c1e7a..31c5cfb0a8 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:19+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po index f1d55501fc..740b1243b3 100644 --- a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index bb7cd0323e..4358ca68d2 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:19+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:24+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLStats/locale/SQLStats.pot b/plugins/SQLStats/locale/SQLStats.pot index 8aea2271ed..a5d1002873 100644 --- a/plugins/SQLStats/locale/SQLStats.pot +++ b/plugins/SQLStats/locale/SQLStats.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po index 0b25b97dbe..41c6edda1f 100644 --- a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-13 13:57:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po index b3c8f8d08c..27ff4aeb6d 100644 --- a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:19+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-13 13:57:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po index dca4204e68..e075d53111 100644 --- a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:19+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-13 13:57:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po index 36587a42b4..b963d3fb26 100644 --- a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:19+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-13 13:57:12+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index 52a5db6310..a0a17820fb 100644 --- a/plugins/Sample/locale/Sample.pot +++ b/plugins/Sample/locale/Sample.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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 4e1527d07e..c3e31c63f7 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index af8a273524..5407a20a60 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index a9d82fe69c..50f157fced 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f1ecbd03a3..e1412524c2 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index 8ccf27983f..89d0ae5b13 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 295f5fb394..878a18d529 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 50552953bf..da68aa0080 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index fde3aeca2e..7293544ebc 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index f64132ea34..b0a0f723e7 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 7cd3de9fcc..18f946e087 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:43+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 ee66f11e27..80b71a3d1b 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:44+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:09+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:47+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index c132651019..d09049b282 100644 --- a/plugins/SearchSub/locale/SearchSub.pot +++ b/plugins/SearchSub/locale/SearchSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index 5816fdde7e..cd9ed3357b 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:12+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -208,6 +208,3 @@ msgstr "" #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Tote tu subscriptiones de recerca ha essite disactivate." - -#~ msgid "Search subscriptions" -#~ msgstr "Subscriptiones de recerca" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index cb02a35127..f0d41c1c8c 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:12+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -204,6 +204,3 @@ msgstr "Грешка при оневозможувањето на претпла #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Ги оневозможив соте пребарувања на кои сте се претплатиле." - -#~ msgid "Search subscriptions" -#~ msgstr "Претплата на пребарувања" diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index 3556e76497..0e5b55040f 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:12+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -207,6 +207,3 @@ msgstr "" #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Al uw abonnementen op zoekopdrachten zijn uitgeschakeld." - -#~ msgid "Search subscriptions" -#~ msgstr "Zoekopdrachtabonnementen" diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index 11e577ed81..99de590400 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:12+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -215,6 +215,3 @@ msgstr "" #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Hindi na pinagagana ang lahat ng mga pagpapasipi mo ng paghahanap." - -#~ msgid "Search subscriptions" -#~ msgstr "Mga pagpapasipi ng paghahanap" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index bfea560dce..cfab7073a4 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:05+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:12+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:17:37+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:57+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" @@ -208,6 +208,3 @@ msgstr "Помилка при скасуванні пошукової підпи #. TRANS: Message given having disabled all search subscriptions with 'track off'. msgid "Disabled all your search subscriptions." msgstr "Вимкнути всі пошукові підписки." - -#~ msgid "Search subscriptions" -#~ msgstr "Підписки на пошукові запити" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 2f1b42f9fb..4c899c7608 100644 --- a/plugins/ShareNotice/locale/ShareNotice.pot +++ b/plugins/ShareNotice/locale/ShareNotice.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po index 75592b3b05..f61f32ef92 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index 139f19f180..9a0842a05d 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index ff73d3fd4e..01fc5f304e 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index c499a011d8..997319144b 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index 63c2f683b1..f8d32a84b1 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index 7800ae485f..39613d90c1 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index be9940b365..9b06867a4f 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index 3fd9794eaa..949fb4de8d 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index 891a7c4761..04bb18f94b 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index d1f8a0d8bc..7af1518ec0 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index 3b4bcf90e9..6a1d91631d 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:47+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-24 15:25:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index cdfc3b7041..4d2d89d124 100644 --- a/plugins/SimpleUrl/locale/SimpleUrl.pot +++ b/plugins/SimpleUrl/locale/SimpleUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po index 83a2495a3b..1f17cdc73b 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index 9be08deee9..c097e9b51e 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index a08008b325..45b7f04548 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index 3ad0885829..a8a5944cc4 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index b4723601cb..bca44210c0 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index c51700cf8f..acb5beb1ee 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index 01a48ff106..3beb982d64 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index 7292f7ff02..3ef4fbea76 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index b5d80e448c..38b5096c64 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index dab0373217..be28359c8a 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 01f831c4a1..f02194c2a1 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f2efc0d5a4..0070924bd2 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 867e0d3d0c..ce42f1bd93 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 7cbbebc7de..1bff9211d3 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 7d02d310b1..a2b2cc51cc 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:48+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 d5f3ff5596..0832ce5078 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 488e83cfc1..a5efc8a506 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:49+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:14+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:56+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index eff168a1ed..2c267ad053 100644 --- a/plugins/Sitemap/locale/Sitemap.pot +++ b/plugins/Sitemap/locale/Sitemap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po index 15c0859bd0..f2cd9d1938 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:16+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index 45e113cccb..65e23e9794 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:16+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index db5e68cc35..e483cba5e4 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:16+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index 55ed77b5a0..92d7d5d96b 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:16+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index e4e4c631e8..2fe7e556fe 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:16+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index b5acb2e6e4..7d1b1bc591 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:16+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index fa89f5f5eb..508d876ca4 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:16+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 8ff8c828bd..20b2ecd794 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:16+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index 259e2f21c3..74350e9ecd 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:16+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:57+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index cd0220b412..999f3fcd51 100644 --- a/plugins/SlicedFavorites/locale/SlicedFavorites.pot +++ b/plugins/SlicedFavorites/locale/SlicedFavorites.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po index 028cb4c287..dfe13b1259 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:50+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index 961d6347c0..af0a9af0ba 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 11d58ee8c3..45bc96d603 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index b5a8ab9233..0968081687 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index f67c855879..a511c5599b 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index c1d205e502..f3d17658d0 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index 1484d5774d..8ff1020508 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index 3bb06cc066..320117b2d4 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index 680ac768b7..68baf85b9f 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index efd18b1ce4..2e359ffdd9 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:17+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index 513310a2c2..bbefb3d37c 100644 --- a/plugins/SphinxSearch/locale/SphinxSearch.pot +++ b/plugins/SphinxSearch/locale/SphinxSearch.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po index b17ff440d9..2dc8af3bc7 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index b7a15e941c..c864205a02 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:51+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index 92c123c5bb..a0a9114537 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index 4ae3b83ca8..0e9a71c26e 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index 70e325fd1d..0fb52d0deb 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index 1f187ee5f9..5eeac6fa33 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index b459207009..8d592b9a59 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index 306a008f6a..199ccc13d0 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:52+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:18+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:09:58+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index 52c8457ac4..c8946b32f0 100644 --- a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot +++ b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index 588b1feb7c..e5b4d5d9c7 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:19+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index ab47b486e5..4f1914d3eb 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index 96d8e92e6d..6afc7d0d34 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:53+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po index 5ff86c457e..e5b9bf3263 100644 --- a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:20+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index bc87044e1a..27de471bd7 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index bfe5768b01..7a6e7aaed1 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:26+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 1be6281358..17dc22576b 100644 --- a/plugins/SubMirror/locale/SubMirror.pot +++ b/plugins/SubMirror/locale/SubMirror.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 6f66c3af82..3cd4fddb86 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:22+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 72dcd5d943..5179def084 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:22+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 096798dd0d..35fe2ce9c4 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:22+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 de5ebcc569..3a21cb3434 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:22+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 beeb9c2fde..eb4aca400c 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:22+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 9d1264559d..e6ae4b3106 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:22+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 5bce200cb7..60739e27a9 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:56+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a30490592c..69e6900eee 100644 --- a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot +++ b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index 3932622df9..3747794c3a 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:23+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0f1de2dd7d..0e5c291cc3 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:23+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po index 0951a11a70..c1e05bebbc 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:23+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index 02ed897ed1..a7317c780b 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:23+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index 9d0efc4590..8675d6b166 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:23+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 6a8dabc851..db4b871e60 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:23+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:29+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3d608e2407..b9e1ec62eb 100644 --- a/plugins/TabFocus/locale/TabFocus.pot +++ b/plugins/TabFocus/locale/TabFocus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po index 659aad5d59..4135afc185 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index 940ac3edfa..3475606ac5 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index 0e018ea0e2..93b85e646e 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index 2f362ea376..2604df89e4 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index 9cf4f0dcc3..de28e830ef 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 7890dd1aef..cda64a0ee3 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:57+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 5c1f621bdc..3ea3cf5f23 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 6056dfbdc2..3f3444ba9f 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 71236183ef..e49057a45e 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 56d97f8392..00c756e81d 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 005fa08d2c..40dcd88b79 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f35c758da1..0389fb7394 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 c12c0d3da5..24aa718c71 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:22:58+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:25+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-03-18 20:10:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TagSub/locale/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index 5fdbc8937f..38af6304eb 100644 --- a/plugins/TagSub/locale/TagSub.pot +++ b/plugins/TagSub/locale/TagSub.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 8ea5969396..9bea837e77 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:19+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:26+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:19:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -132,6 +132,3 @@ msgstr "%s non seque alcun etiquetta." #, php-format msgid "#%s since %s" msgstr "#%s depost %s" - -#~ msgid "Tag subscriptions" -#~ msgstr "Subscriptiones a etiquettas" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index 016586ab71..8bb66b2553 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:19+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:26+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:19:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -130,6 +130,3 @@ msgstr "%s не слуша никакви ознаки." #, php-format msgid "#%s since %s" msgstr "#%s од %s" - -#~ msgid "Tag subscriptions" -#~ msgstr "Претплати на ознаки" diff --git a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po index 95f1b60bdc..b11f487b7a 100644 --- a/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ms/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:19+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:26+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:19:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -123,6 +123,3 @@ msgstr "%s tidak mendengari mana-mana tag pun." #, php-format msgid "#%s since %s" msgstr "#%s sejak %s" - -#~ msgid "Tag subscriptions" -#~ msgstr "Langganan tag" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index 036c739375..6cc767154b 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:19+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:26+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:19:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -134,6 +134,3 @@ msgstr "%s heeft geen labelabonnementen." #, php-format msgid "#%s since %s" msgstr "#%s sinds %s" - -#~ msgid "Tag subscriptions" -#~ msgstr "Labelabonnementen" diff --git a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po index 80b9c0fc46..a6ce3a87e5 100644 --- a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:19+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:26+0000\n" "Language-Team: Serbian Cyrillic ekavian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:19:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sr-ec\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -132,6 +132,3 @@ msgstr "%s не слуша ниједну ознаку." #, php-format msgid "#%s since %s" msgstr "#%s од %s" - -#~ msgid "Tag subscriptions" -#~ msgstr "Пријаве за ознаку" diff --git a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po index e101990008..edda5e488b 100644 --- a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:19+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:19:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -122,6 +122,3 @@ msgstr "" #, php-format msgid "#%s since %s" msgstr "#%s %s నుండి" - -#~ msgid "Tag subscriptions" -#~ msgstr "ట్యాగు చందాలు" diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index fad19d11b7..45494d6d7a 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:19:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -134,6 +134,3 @@ msgstr "Si %s ay hindi nakikinig sa anumang mga tatak." #, php-format msgid "#%s since %s" msgstr "#%s magmula noong %s" - -#~ msgid "Tag subscriptions" -#~ msgstr "Mga pagpapasipi ng tatak" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index cf9aaf689a..c12ad99b7d 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-13 13:57:14+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:19:00+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -129,6 +129,3 @@ msgstr "%s не підписаний до жодних тегів" #, php-format msgid "#%s since %s" msgstr "#%s протягом %s" - -#~ msgid "Tag subscriptions" -#~ msgstr "Підписки на теґи" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index 2d92e3b119..83d665aef9 100644 --- a/plugins/TightUrl/locale/TightUrl.pot +++ b/plugins/TightUrl/locale/TightUrl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po index 07a439d8de..807bbbb7fe 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:00+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index 9985b7b3aa..d1cc6fea33 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:00+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index 7e98b93dbd..55cb2f39a6 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index 110229868b..1c3416af69 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index a0756680f1..2827248505 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index 4399438989..45e6fe260e 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index 18404ae57a..1d869ad136 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 6512f9a458..5727bd9e86 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e98e128752..66cc403c1a 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:27+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po index d61eafb554..100658ed7f 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\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 ca2bb51366..45e2fafc3a 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 7778e8e0eb..e97c728a09 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index b46599a046..c439adfc04 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index 4d9b6507d4..6ed9488ba1 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22: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: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index bcbca5beb8..5f997b8be7 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 edc887905a..1e5a24f013 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e6a60eace3..e2354b7437 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:01+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:06:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 927f3663b1..23d587c495 100644 --- a/plugins/TinyMCE/locale/TinyMCE.pot +++ b/plugins/TinyMCE/locale/TinyMCE.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po index 5ea0a42932..196d2bf78d 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index 5b9e856ca0..f14bfcadd7 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index 3fc1c135f8..0bb9420fe5 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:28+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index 86ed67886d..fe81e0545d 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index af0aa55565..4d4c8dd5b8 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index f844354736..57ab9febc7 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index b755d2e945..2d012a5ebe 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index b0721fb07c..8c84456ba2 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po index 3277ddeefb..68d93396df 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\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 5c50729413..0594666b51 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 14ad6ce53d..37607a006b 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index beaaf9a7e6..af2f81425b 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index 58759722c6..a17dc8158a 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 efa04ab8b3..892affc682 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 eb7c02e3fe..a6d655cae6 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 9a0909bc94..1a050c62fe 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:02+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:29+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-01 21:07:01+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e9e1d3d2fb..bc356882b7 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/br/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po index 356dcd3028..26066fabe7 100644 --- a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:34+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index a6380b5099..3649547cac 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:34+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -163,10 +163,11 @@ msgstr "1-64 lletres en minúscules o nombres, sense puntuació o espais." msgctxt "LABEL" msgid "Email" -msgstr "" +msgstr "Correu electrònic" msgid "Used only for updates, announcements, and password recovery" msgstr "" +"S'utilitza per a actualitzacions, anuncis i per recuperar la contrasenya" msgid "Create" msgstr "Crea" @@ -299,9 +300,8 @@ msgid "Sign in with Twitter" msgstr "Inici de sessió amb el Twitter" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. -#, fuzzy msgid "Your Twitter bridge has been disabled" -msgstr "S'ha inhabilitat el vostre pont del Twitter." +msgstr "S'ha inhabilitat el vostre pont del Twitter" #. TRANS: Mail body after forwarding notices to Twitter has stopped working. #. TRANS: %1$ is the name of the user the mail is sent to, %2$s is a URL to the diff --git a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po index 0cfe215e13..41c2d54498 100644 --- a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:35+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 710310e8a9..1949ab580c 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:35+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 1970613570..0d519eff8f 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:35+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 bd35fd37c1..b15d1dfa4f 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:35+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index b1797eeb5e..18585b1723 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:08+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:35+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\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 86885f90e3..46b6339be3 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:35+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index 94f7e0a09c..6dfd79d9d2 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:35+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\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 318454a93a..4173847fb7 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:35+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 4c5a970da7..ab37084929 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:36+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 a2cb6802b6..3d6e8fe302 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:09+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22: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: 2011-04-11 13:17:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index 3b49a793f4..29cfc227cb 100644 --- a/plugins/UserFlag/locale/UserFlag.pot +++ b/plugins/UserFlag/locale/UserFlag.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 6142f18d4a..a814f069f1 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:37+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index 34f2f33287..3f7f17c491 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:10+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:37+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index a78aad78be..226069adf2 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:37+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index 01ab1bbc39..33dd88d84a 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:37+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index c1144ae9c0..87f8974e9b 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:37+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 31abe2aa45..4da2883300 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:37+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index 87c93c196b..385dbb75ad 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:37+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index 7e8b988a74..1cd251b1f0 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po index 15414e1304..11e361054b 100644 --- a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index d0828fe9be..89ad0c3dfe 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:17:40+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index 232b0144a9..7efabd606a 100644 --- a/plugins/UserLimit/locale/UserLimit.pot +++ b/plugins/UserLimit/locale/UserLimit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po index 3f3eab657e..15cb0cc473 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index 90804ca573..43b38ce89c 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index f9d1fccdc2..f1e32896bc 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index f6c8ea3bd9..f5259a3d87 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index f155567cd0..d7a9a2b20d 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:11+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index 06606fc419..8edf1d8cd3 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index 91db7f79e1..cb4b21841f 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:38+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index b95472e6e0..ef7ccefed2 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\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 3df44806ff..5a4a80ef95 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index 4c13eaf50b..6a36e59435 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index 8c02afa7ff..fb241d0499 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index 1133d0e014..625e051f21 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lv\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 90688670e7..47f21003c2 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/ms/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po index 47c2fdc895..1f20e2c76c 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\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 e8266923f9..59b026c013 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 12551ff17c..77be31ab14 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index 0aa1a3468d..d48bf5f525 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index 52e42debe2..4467a890d3 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 d4fb859ff3..2562addf14 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8a25e76abc..46d162fc09 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 88f0502bec..0b32a77fba 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:12+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 b82475f019..62fa9df433 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:39+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 2e5c63ddd9..52ba475cd1 100644 --- a/plugins/WikiHashtags/locale/WikiHashtags.pot +++ b/plugins/WikiHashtags/locale/WikiHashtags.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 1fa5d1cfdf..948c404356 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:40+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 0662f6b2f3..054a5e7968 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:40+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/ms/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po index b94fba2a51..848b1efce8 100644 --- a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:40+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\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 76c618819c..f872fc9d33 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:40+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index 56b33d0af7..1e096a8241 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:40+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index e532228295..8d43452233 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: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:13+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:40+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:41+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 215b49e8b6..b85c95b37e 100644 --- a/plugins/WikiHowProfile/locale/WikiHowProfile.pot +++ b/plugins/WikiHowProfile/locale/WikiHowProfile.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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 8a869e144e..14f8a0c4c6 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:20:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f0ec9102fd..d970daf058 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:20:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 f9656d1d2b..07fb7dda2d 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:20:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po index 872859b8f7..e8421a1c79 100644 --- a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:20:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\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 b6cf30a9cc..3b8a70ec7a 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:20:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 1182844b0f..4a062ead55 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:20:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 8e0e12da1e..36fbeafb9f 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:20:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 15bc08c58a..6a64017342 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:20:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 7b16be1f75..7a4dd261cd 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:14+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-11 13:20:27+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 5e7bfe6148..670c8d081c 100644 --- a/plugins/XCache/locale/XCache.pot +++ b/plugins/XCache/locale/XCache.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\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/ast/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po index c2eb4aca4e..fc028afbe0 100644 --- a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:41+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index 82b9336910..b95c442bb8 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index e50a8d9d74..706ee7b7d6 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po index 216a29a2df..aaa9b23c15 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index d1c6800a1d..417d9ad68e 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index 2bbf77a46c..995398538f 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po index 3f3ac367b6..d47a3bef35 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index 9d21f4ecd9..dd490f476c 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index 5f606ae044..8e0dc1e9ef 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index a618500cef..ae6309de44 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po index dc95c234e6..2a6c42b3db 100644 --- a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\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 9bf97e2756..a3eae2582d 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 566152a4bb..4d07117648 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po index 582fd354a9..145f8816dc 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index 52c5acde07..ab39bd118c 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index af5006e437..2af8f1e3e7 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 e23cb9c0c9..9d1ed03f44 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 18530ca254..eb754573e5 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\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 3cdf9f2807..a0b373cfc3 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:15+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:42+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-01 21:07:17+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-13 13:57:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/Xmpp/locale/Xmpp.pot b/plugins/Xmpp/locale/Xmpp.pot index 0e690d16fd..7fbda18429 100644 --- a/plugins/Xmpp/locale/Xmpp.pot +++ b/plugins/Xmpp/locale/Xmpp.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index 2153d15f03..9f9b8a8e9c 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:43+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index 97b466935c..f236266a13 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:43+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po index 1684d523ab..c63a753d4a 100644 --- a/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ms/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:43+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index a877d3e4d5..e00f2daac1 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po index 3d8f08a751..8d2e396db6 100644 --- a/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/pt/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:43+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po index 81cfcba812..3724ce269b 100644 --- a/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/sv/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:43+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po index e458b26b8e..2a9a0e1531 100644 --- a/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/tl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:43+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po index 15e7190de9..78fbd88c4f 100644 --- a/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/uk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:16+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:43+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-04-09 19:01:43+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 16edfff381..269f07204e 100644 --- a/plugins/YammerImport/locale/YammerImport.pot +++ b/plugins/YammerImport/locale/YammerImport.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po index 5998674097..a3a76032cf 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-16 22:54+0000\n" -"PO-Revision-Date: 2011-04-16 22:59:39+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:47+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r86243); Translate extension (2011-04-13)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 3ca86773cb..3a8394a30b 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po index 7f1633517c..ad52196ec0 100644 --- a/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/gl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:47+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index db8977f897..340d5e1aaa 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index dafa0e8afc..36f24e5809 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po index 71f54ee5cd..704d1827ef 100644 --- a/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ms/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:47+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index 20c4b1a2ed..61b0d89469 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:48+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po index 486af93b55..acaffb7838 100644 --- a/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ru/LC_MESSAGES/YammerImport.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:48+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po index bc299db521..8f0701ec4f 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:48+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index be0a90de33..f10cfbb41f 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:48+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index d7e2a00f97..28a1352140 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-13 13:18+0000\n" -"PO-Revision-Date: 2011-04-13 13:23:20+0000\n" +"POT-Creation-Date: 2011-04-17 18:17+0000\n" +"PO-Revision-Date: 2011-04-17 18:22:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-04-11 13:20:28+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n" +"X-POT-Import-Date: 2011-04-16 23:18:37+0000\n" +"X-Generator: MediaWiki 1.18alpha (r86268); Translate extension (2011-04-13)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" From b1cc12af2ce66d1066c7543c9797b1fba9faf88f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 17 Apr 2011 17:00:15 -0400 Subject: [PATCH 3/3] use small triangle for notice addressees --- lib/noticelistitem.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index 02c7c59a65..05b0dab16e 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -245,7 +245,7 @@ class NoticeListItem extends Widget if (!$first) { $this->out->text( _m('SEPARATOR',', ')); } else { - $this->out->text(' ▶ '); + $this->out->text(_(' ▸ ')); $first = false; } $this->out->element('a', array('href' => $group->homeUrl(), @@ -272,7 +272,7 @@ class NoticeListItem extends Widget $this->out->text(_m('SEPARATOR',', ')); } else { // TRANS: Start of profile addressees list. - $this->out->text(_(' ▶ ')); + $this->out->text(_(' ▸ ')); $first = false; } $this->out->element('a', array('href' => $reply->profileurl,