diff --git a/INSTALL b/INSTALL index f40594d260..54225ca315 100644 --- a/INSTALL +++ b/INSTALL @@ -106,9 +106,9 @@ especially if you've previously installed PHP/MySQL packages. 1. Unpack the tarball you downloaded on your Web server. Usually a command like this will work: - tar zxf statusnet-1.0.0rc1.tar.gz + tar zxf statusnet-1.0.1.tar.gz - ...which will make a statusnet-1.0.0rc1 subdirectory in your current + ...which will make a statusnet-1.0.1 subdirectory in your current directory. (If you don't have shell access on your Web server, you may have to unpack the tarball on your local computer and FTP the files to the server.) @@ -116,7 +116,7 @@ especially if you've previously installed PHP/MySQL packages. 2. Move the tarball to a directory of your choosing in your Web root directory. Usually something like this will work: - mv statusnet-1.0.0rc1 /var/www/statusnet + mv statusnet-1.0.1 /var/www/statusnet This will make your StatusNet instance available in the statusnet path of your server, like "http://example.net/statusnet". "microblog" or diff --git a/README b/README index 07537a7c1d..d08f9ff1ab 100644 --- a/README +++ b/README @@ -2,8 +2,8 @@ README ------ -StatusNet 1.0.0rc1 -20 September 2011 +StatusNet 1.0.1 +3 October 2011 This is the README file for StatusNet, the Open Source social networking platform. It includes general information about the @@ -107,11 +107,13 @@ for additional terms. New this version ================ -This is a major feature release since 0.9.9, released 2 August -2011. It is the first release of the new branch of StatusNet, and the -first release in the 1.x timeline. +This is a minor bug fix release since 1.0.0, released 30 September +2011. It fixes the following bugs: -Notable changes this version: +- Change default OEmbed provider from oohembed to noembed. +- Fix problem with path matching on new installs. + +Notable additions in the 1.0.x series: - Support for private updates, including private-to-groups, private within a site, and private to followers only. @@ -144,7 +146,7 @@ Notable changes this version: - Deeper integration with Activity Streams (http://activitystrea.ms) format. - Automated upgrade script. -A full changelog is available at http://status.net/wiki/StatusNet_1.0.0. +A full changelog is available at http://status.net/wiki/StatusNet_1.0.1. Troubleshooting =============== @@ -197,6 +199,7 @@ Feedback place to discuss the software. * StatusNet has a bug tracker for any defects you may find, or ideas for making things better. http://status.net/open-source/issues +* The StatusNet forum is at http://forum.status.net/. Credits ======= diff --git a/UPGRADE b/UPGRADE index cf2375dffe..17838185f3 100644 --- a/UPGRADE +++ b/UPGRADE @@ -24,7 +24,7 @@ instructions; read to the end first before trying them. 5. Once all writing processes to your site are turned off, make a final backup of the Web directory and database. 6. Move your StatusNet directory to a backup spot, like "statusnet.bak". -7. Unpack your StatusNet 1.0.0 tarball and move it to "statusnet" or +7. Unpack your StatusNet 1.0.1 tarball and move it to "statusnet" or wherever your code used to be. 8. Copy the config.php file and the contents of the avatar/, background/, file/, and local/ subdirectories from your old directory to your new @@ -37,7 +37,7 @@ instructions; read to the end first before trying them. reversed. YOU CAN EASILY DESTROY YOUR SITE WITH THIS STEP. Don't do it without a known-good backup! - In your new StatusNet 1.0.0 directory and AFTER YOU MAKE A + In your new StatusNet 1.0.1 directory and AFTER YOU MAKE A BACKUP run the upgrade.php script like this: php ./scripts/upgrade.php diff --git a/actions/all.php b/actions/all.php index 6e6dae5d16..b9f9bdd503 100644 --- a/actions/all.php +++ b/actions/all.php @@ -223,7 +223,7 @@ class AllAction extends ProfileAction // XXX: make this a little more convenient if (!common_config('performance', 'high')) { - $pop = new PopularNoticeSection($this); + $pop = new PopularNoticeSection($this, Profile::current()); $pop->show(); $pop = new InboxTagCloudSection($this, $this->user); $pop->show(); diff --git a/actions/doc.php b/actions/doc.php index 95f76fb9dd..c26b290902 100644 --- a/actions/doc.php +++ b/actions/doc.php @@ -162,4 +162,72 @@ class DocAction extends Action Event::handle('EndLoadDoc', array($this->title, &$this->output)); } } + + function showLocalNav() + { + $menu = new DocNav($this); + $menu->show(); + } +} + +class DocNav extends Menu +{ + function show() + { + $stub = new HomeStubNav($this->action); + $this->submenu(_m('MENU','Home'), $stub); + + $docs = new DocListNav($this->action); + $this->submenu(_m('MENU','Docs'), $docs); + } +} + +class DocListNav extends Menu +{ + function getItems() + { + $items = array(); + + if (Event::handle('StartDocsMenu', array(&$items))) { + + $items = array(array('doc', + array('title' => 'help'), + _m('MENU', 'Help'), + _('Getting started'), + 'nav_doc_help'), + array('doc', + array('title' => 'about'), + _m('MENU', 'About'), + _('About this site'), + 'nav_doc_about'), + array('doc', + array('title' => 'faq'), + _m('MENU', 'FAQ'), + _('Frequently asked questions'), + 'nav_doc_faq'), + array('doc', + array('title' => 'contact'), + _m('MENU', 'Contact'), + _('Contact info'), + 'nav_doc_contact'), + array('doc', + array('title' => 'tags'), + _m('MENU', 'Tags'), + _('Using tags'), + 'nav_doc_tags'), + array('doc', + array('title' => 'groups'), + _m('MENU', 'Groups'), + _('Using groups'), + 'nav_doc_groups'), + array('doc', + array('title' => 'api'), + _m('MENU', 'API'), + _('RESTful API'), + 'nav_doc_api')); + + Event::handle('EndDocsMenu', array(&$items)); + } + return $items; + } } diff --git a/actions/editgroup.php b/actions/editgroup.php index 35dd25b896..7439b9d030 100644 --- a/actions/editgroup.php +++ b/actions/editgroup.php @@ -159,7 +159,7 @@ class EditgroupAction extends GroupAction function showScripts() { parent::showScripts(); - $this->autofocus('nickname'); + $this->autofocus('newnickname'); } function trySave() @@ -173,7 +173,7 @@ class EditgroupAction extends GroupAction if (Event::handle('StartGroupSaveForm', array($this))) { - $nickname = Nickname::normalize($this->trimmed('nickname')); + $nickname = Nickname::normalize($this->trimmed('newnickname')); $fullname = $this->trimmed('fullname'); $homepage = $this->trimmed('homepage'); $description = $this->trimmed('description'); diff --git a/actions/editpeopletag.php b/actions/editpeopletag.php index b2dedc890f..546d9910ba 100644 --- a/actions/editpeopletag.php +++ b/actions/editpeopletag.php @@ -71,7 +71,11 @@ class EditpeopletagAction extends Action } $id = $this->arg('id'); - $tagger_arg = $this->arg('tagger'); + if (common_config('singleuser', 'enabled')) { + $tagger_arg = User::singleUserNickname(); + } else { + $tagger_arg = $this->arg('tagger'); + } $tag_arg = $this->arg('tag'); $tagger = common_canonical_nickname($tagger_arg); diff --git a/actions/favorited.php b/actions/favorited.php index 17c2a58c94..ff4a99cd60 100644 --- a/actions/favorited.php +++ b/actions/favorited.php @@ -172,11 +172,8 @@ class FavoritedAction extends Action */ function showContent() { - $pop = new Popularity(); - $pop->offset = ($this->page - 1) * NOTICES_PER_PAGE; - $pop->limit = NOTICES_PER_PAGE; - $pop->expiry = 600; - $notice = $pop->getNotices(); + $stream = new PopularNoticeStream(Profile::current()); + $notice = $stream->getNotices(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE+1); $nl = new NoticeList($notice, $this); diff --git a/actions/newgroup.php b/actions/newgroup.php index c54e24ed95..cf3125fd87 100644 --- a/actions/newgroup.php +++ b/actions/newgroup.php @@ -122,7 +122,7 @@ class NewgroupAction extends Action { if (Event::handle('StartGroupSaveForm', array($this))) { try { - $nickname = Nickname::normalize($this->trimmed('nickname')); + $nickname = Nickname::normalize($this->trimmed('newnickname')); } catch (NicknameException $e) { $this->showForm($e->getMessage()); } diff --git a/actions/peopletagged.php b/actions/peopletagged.php index 424bf2dcbe..6f9748c234 100644 --- a/actions/peopletagged.php +++ b/actions/peopletagged.php @@ -58,7 +58,12 @@ class PeopletaggedAction extends Action parent::prepare($args); $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; - $tagger_arg = $this->arg('tagger'); + if (common_config('singleuser', 'enabled')) { + $tagger_arg = User::singleUserNickname(); + } else { + $tagger_arg = $this->arg('tagger'); + } + $tag_arg = $this->arg('tag'); $tagger = common_canonical_nickname($tagger_arg); $tag = common_canonical_tag($tag_arg); diff --git a/actions/peopletagsbyuser.php b/actions/peopletagsbyuser.php index dc3e50b9f2..8ef1a56ee1 100644 --- a/actions/peopletagsbyuser.php +++ b/actions/peopletagsbyuser.php @@ -76,7 +76,12 @@ class PeopletagsbyuserAction extends Action $this->args['public'] = $this->args['private'] = false; } - $nickname_arg = $this->arg('nickname'); + if (common_config('singleuser', 'enabled')) { + $nickname_arg = User::singleUserNickname(); + } else { + $nickname_arg = $this->arg('nickname'); + } + $nickname = common_canonical_nickname($nickname_arg); // Permanent redirect on non-canonical nickname diff --git a/actions/peopletagsforuser.php b/actions/peopletagsforuser.php index 321dbe19a1..d30f7321c1 100644 --- a/actions/peopletagsforuser.php +++ b/actions/peopletagsforuser.php @@ -58,7 +58,12 @@ class PeopletagsforuserAction extends Action { parent::prepare($args); - $nickname_arg = $this->arg('nickname'); + if (common_config('singleuser', 'enabled')) { + $nickname_arg = User::singleUserNickname(); + } else { + $nickname_arg = $this->arg('nickname'); + } + $nickname = common_canonical_nickname($nickname_arg); // Permanent redirect on non-canonical nickname diff --git a/actions/peopletagsubscribers.php b/actions/peopletagsubscribers.php index e371799efb..1834a7e4ad 100644 --- a/actions/peopletagsubscribers.php +++ b/actions/peopletagsubscribers.php @@ -58,7 +58,12 @@ class PeopletagsubscribersAction extends Action parent::prepare($args); $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; - $tagger_arg = $this->arg('tagger'); + if (common_config('singleuser', 'enabled')) { + $tagger_arg = User::singleUserNickname(); + } else { + $tagger_arg = $this->arg('tagger'); + } + $tag_arg = $this->arg('tag'); $tagger = common_canonical_nickname($tagger_arg); $tag = common_canonical_tag($tag_arg); diff --git a/actions/peopletagsubscriptions.php b/actions/peopletagsubscriptions.php index d857fb2356..c497842969 100644 --- a/actions/peopletagsubscriptions.php +++ b/actions/peopletagsubscriptions.php @@ -60,7 +60,12 @@ class PeopletagsubscriptionsAction extends Action { parent::prepare($args); - $nickname_arg = $this->arg('nickname'); + if (common_config('singleuser', 'enabled')) { + $nickname_arg = User::singleUserNickname(); + } else { + $nickname_arg = $this->arg('nickname'); + } + $nickname = common_canonical_nickname($nickname_arg); // Permanent redirect on non-canonical nickname diff --git a/actions/public.php b/actions/public.php index cf732fe464..7bcdd3fae2 100644 --- a/actions/public.php +++ b/actions/public.php @@ -255,7 +255,9 @@ class PublicAction extends Action $ibs->show(); } - $pop = new PopularNoticeSection($this); + $p = Profile::current(); + + $pop = new PopularNoticeSection($this, $p); $pop->show(); if (!common_config('performance', 'high')) { $cloud = new PublicTagCloudSection($this); diff --git a/actions/showgroup.php b/actions/showgroup.php index 2449ea1db7..eba3191f6f 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -211,25 +211,23 @@ class ShowgroupAction extends GroupAction function showAnonymousMessage() { if (!(common_config('site','closed') || common_config('site','inviteonly'))) { - // @todo FIXME: use group full name here if available instead of (uglier) primary alias. // TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. - // TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, + // TRANS: %s is the group name, %%%%site.name%%%% is the site name, // TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. // TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). $m = sprintf(_('**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. Its members share ' . 'short messages about their life and interests. '. '[Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))'), - $this->group->nickname); + $this->group->getBestName()); } else { - // @todo FIXME: use group full name here if available instead of (uglier) primary alias. // TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. - // TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, + // TRANS: %s is the group name, %%%%site.name%%%% is the site name, // TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). $m = sprintf(_('**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. Its members share ' . - 'short messages about their life and interests. '), - $this->group->nickname); + 'short messages about their life and interests.'), + $this->group->getBestName()); } $this->elementStart('div', array('id' => 'anon_notice')); $this->raw(common_markup_to_html($m)); diff --git a/actions/showprofiletag.php b/actions/showprofiletag.php index 278246c894..ec1837f835 100644 --- a/actions/showprofiletag.php +++ b/actions/showprofiletag.php @@ -44,7 +44,11 @@ class ShowprofiletagAction extends Action { parent::prepare($args); - $tagger_arg = $this->arg('tagger'); + if (common_config('singleuser', 'enabled')) { + $tagger_arg = User::singleUserNickname(); + } else { + $tagger_arg = $this->arg('tagger'); + } $tag_arg = $this->arg('tag'); $tagger = common_canonical_nickname($tagger_arg); $tag = common_canonical_tag($tag_arg); diff --git a/actions/showstream.php b/actions/showstream.php index 6e5ba84511..a3b1794313 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -274,7 +274,7 @@ class ShowstreamAction extends ProfileAction // TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. // TRANS: This message contains a Markdown link. Keep "](" together. $m = sprintf(_('**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . - 'based on the Free Software [StatusNet](http://status.net/) tool. '), + 'based on the Free Software [StatusNet](http://status.net/) tool.'), $this->user->nickname, $this->user->nickname); } $this->elementStart('div', array('id' => 'anon_notice')); diff --git a/actions/subscriptions.php b/actions/subscriptions.php index b4575565b9..e4cb123912 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -132,9 +132,7 @@ class SubscriptionsAction extends GalleryAction // TRANS: and do not change the URL part. $message = _('You\'re not listening to anyone\'s notices right now, try subscribing to people you know. '. 'Try [people search](%%action.peoplesearch%%), look for members in groups you\'re interested '. - 'in and in our [featured users](%%action.featured%%). '. - 'If you\'re a [Twitter user](%%action.twittersettings%%), you can automatically subscribe to '. - 'people you already follow there.'); + 'in and in our [featured users](%%action.featured%%).'); } else { // 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. diff --git a/actions/top.php b/actions/top.php new file mode 100644 index 0000000000..39abe3df26 --- /dev/null +++ b/actions/top.php @@ -0,0 +1,86 @@ +. + * + * @category Top + * @package StatusNet + * @author Evan Prodromou + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * An action to redirect to the top of the site + * + * @category Action + * @package StatusNet + * @author Evan Prodromou + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class TopAction extends Action +{ + /** + * For initializing members of the class. + * + * @param array $argarray misc. arguments + * + * @return boolean true + */ + + function prepare($argarray) + { + parent::prepare($argarray); + return true; + } + + /** + * Handler method + * + * @param array $argarray is ignored since it's now passed in in prepare() + * + * @return void + */ + + function handle($argarray=null) + { + if (common_config('singleuser', 'enabled')) { + $url = common_local_url('showstream', array('nickname' => User::singleUserNickname())); + } else { + $url = common_local_url('public'); + } + + // XXX: Permanent? I think so. + + common_redirect($url, 301); + + return; + } +} diff --git a/actions/usergroups.php b/actions/usergroups.php index 178a3586fd..9d5946b484 100644 --- a/actions/usergroups.php +++ b/actions/usergroups.php @@ -104,7 +104,7 @@ class UsergroupsAction extends ProfileAction return false; } - $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1; + $this->page = $this->trimmed('page', 1); return true; } diff --git a/actions/version.php b/actions/version.php index a7b5fd8c72..0461aade5c 100644 --- a/actions/version.php +++ b/actions/version.php @@ -171,14 +171,14 @@ class VersionAction extends Action _('StatusNet is free software: you can redistribute it and/or modify '. 'it under the terms of the GNU Affero General Public License as published by '. 'the Free Software Foundation, either version 3 of the License, or '. - '(at your option) any later version. ')); + '(at your option) any later version.')); $this->element('p', null, // TRANS: Content part of StatusNet version page. _('This program is distributed in the hope that it will be useful, '. 'but WITHOUT ANY WARRANTY; without even the implied warranty of '. 'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the '. - 'GNU Affero General Public License for more details. ')); + 'GNU Affero General Public License for more details.')); $this->elementStart('p'); // TRANS: Content part of StatusNet version page. diff --git a/classes/Fave.php b/classes/Fave.php index 467465ba05..59a1e00318 100644 --- a/classes/Fave.php +++ b/classes/Fave.php @@ -74,6 +74,7 @@ class Fave extends Managed_DataObject return false; } self::blow('fave:list-ids:notice_id:%d', $fave->notice_id); + self::blow('popular'); Event::handle('EndFavorNotice', array($profile, $notice)); } @@ -92,6 +93,7 @@ class Fave extends Managed_DataObject $result = parent::delete(); self::blow('fave:list-ids:notice_id:%d', $this->notice_id); + self::blow('popular'); if ($result) { Event::handle('EndDisfavorNotice', array($profile, $notice)); diff --git a/classes/File.php b/classes/File.php index f716a9d64c..80fbdb181c 100644 --- a/classes/File.php +++ b/classes/File.php @@ -85,14 +85,22 @@ class File extends Managed_DataObject * @return File */ function saveNew(array $redir_data, $given_url) { - $x = new File; - $x->url = $given_url; - if (!empty($redir_data['protected'])) $x->protected = $redir_data['protected']; - if (!empty($redir_data['title'])) $x->title = $redir_data['title']; - if (!empty($redir_data['type'])) $x->mimetype = $redir_data['type']; - if (!empty($redir_data['size'])) $x->size = intval($redir_data['size']); - if (isset($redir_data['time']) && $redir_data['time'] > 0) $x->date = intval($redir_data['time']); - $file_id = $x->insert(); + + // I don't know why we have to keep doing this but I'm adding this last check to avoid + // uniqueness bugs. + + $x = File::staticGet('url', $given_url); + + if (empty($x)) { + $x = new File; + $x->url = $given_url; + if (!empty($redir_data['protected'])) $x->protected = $redir_data['protected']; + if (!empty($redir_data['title'])) $x->title = $redir_data['title']; + if (!empty($redir_data['type'])) $x->mimetype = $redir_data['type']; + if (!empty($redir_data['size'])) $x->size = intval($redir_data['size']); + if (isset($redir_data['time']) && $redir_data['time'] > 0) $x->date = intval($redir_data['time']); + $file_id = $x->insert(); + } $x->saveOembed($redir_data, $given_url); return $x; @@ -192,7 +200,7 @@ class File extends Managed_DataObject } if (empty($x)) { - $x = File::staticGet($file_id); + $x = File::staticGet('id', $file_id); if (empty($x)) { // @todo FIXME: This could possibly be a clearer message :) // TRANS: Server exception thrown when... Robin thinks something is impossible! diff --git a/classes/File_thumbnail.php b/classes/File_thumbnail.php index 064b454e2d..6b3c0b0255 100644 --- a/classes/File_thumbnail.php +++ b/classes/File_thumbnail.php @@ -56,10 +56,7 @@ class File_thumbnail extends Managed_DataObject 'primary key' => array('file_id'), 'foreign keys' => array( 'file_thumbnail_file_id_fkey' => array('file', array('file_id' => 'id')), - ), - 'unique keys' => array( - 'file_thumbnail_url_key' => array('url'), - ), + ) ); } diff --git a/classes/Group_inbox.php b/classes/Group_inbox.php index 0e01c20b46..fe600cbaf8 100644 --- a/classes/Group_inbox.php +++ b/classes/Group_inbox.php @@ -37,6 +37,7 @@ class Group_inbox extends Managed_DataObject 'indexes' => array( 'group_inbox_created_idx' => array('created'), 'group_inbox_notice_id_idx' => array('notice_id'), + 'group_inbox_group_id_created_notice_id_idx' => array('group_id', 'created', 'notice_id'), ), ); } diff --git a/classes/Group_member.php b/classes/Group_member.php index 53743e7f24..8873942318 100644 --- a/classes/Group_member.php +++ b/classes/Group_member.php @@ -45,6 +45,8 @@ class Group_member extends Managed_DataObject // @fixme probably we want a (profile_id, created) index here? 'group_member_profile_id_idx' => array('profile_id'), 'group_member_created_idx' => array('created'), + 'group_member_profile_id_created_idx' => array('profile_id', 'created'), + 'group_member_group_id_created_idx' => array('group_id', 'created'), ), ); } diff --git a/classes/Managed_DataObject.php b/classes/Managed_DataObject.php index 106065fc46..1d55537e20 100644 --- a/classes/Managed_DataObject.php +++ b/classes/Managed_DataObject.php @@ -168,4 +168,38 @@ abstract class Managed_DataObject extends Memcached_DataObject } return $links; } + + /** + * Return a list of all primary/unique keys / vals that will be used for + * caching. This will understand compound unique keys, which + * Memcached_DataObject doesn't have enough info to handle properly. + * + * @return array of strings + */ + function _allCacheKeys() + { + $table = call_user_func(array(get_class($this), 'schemaDef')); + $ckeys = array(); + + if (!empty($table['unique keys'])) { + $keyNames = $table['unique keys']; + foreach ($keyNames as $idx => $fields) { + $val = array(); + foreach ($fields as $name) { + $val[$name] = self::valueString($this->$name); + } + $ckeys[] = self::multicacheKey($this->tableName(), $val); + } + } + + if (!empty($table['primary key'])) { + $fields = $table['primary key']; + $val = array(); + foreach ($fields as $name) { + $val[$name] = self::valueString($this->$name); + } + $ckeys[] = self::multicacheKey($this->tableName(), $val); + } + return $ckeys; + } } \ No newline at end of file diff --git a/classes/Notice.php b/classes/Notice.php index adcc25973c..9ee5696e3f 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -122,11 +122,11 @@ class Notice extends Managed_DataObject 'notice_repeat_of_fkey' => array('notice', array('repeat_of' => 'id')), # @fixme: what about repeats of deleted notices? ), 'indexes' => array( + 'notice_created_id_is_local_idx' => array('created', 'id', 'is_local'), 'notice_profile_id_idx' => array('profile_id', 'created', 'id'), - 'notice_conversation_idx' => array('conversation'), - 'notice_created_idx' => array('created'), - 'notice_replyto_idx' => array('reply_to'), - 'notice_repeatof_idx' => array('repeat_of'), + 'notice_repeat_of_created_id_idx' => array('repeat_of', 'created', 'id'), + 'notice_conversation_created_id_idx' => array('conversation', 'created', 'id'), + 'notice_replyto_idx' => array('reply_to') ) ); diff --git a/classes/Notice_tag.php b/classes/Notice_tag.php index 77c89dc8ce..b9cbcd1069 100644 --- a/classes/Notice_tag.php +++ b/classes/Notice_tag.php @@ -52,6 +52,7 @@ class Notice_tag extends Managed_DataObject 'indexes' => array( 'notice_tag_created_idx' => array('created'), 'notice_tag_notice_id_idx' => array('notice_id'), + 'notice_tag_tag_created_notice_id_idx' => array('tag', 'created', 'notice_id') ), ); } diff --git a/classes/Profile.php b/classes/Profile.php index f983225fd5..3b3e43025b 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -103,41 +103,61 @@ class Profile extends Managed_DataObject return $this->_user; } - protected $_avatars; - + protected $_avatars; + function getAvatar($width, $height=null) { if (is_null($height)) { $height = $width; } - if (!isset($this->_avatars)) { - $this->_avatars = array(); + $avatar = $this->_getAvatar($width); + + if (empty($avatar)) { + + if (Event::handle('StartProfileGetAvatar', array($this, $width, &$avatar))) { + $avatar = Avatar::pkeyGet( + array( + 'profile_id' => $this->id, + 'width' => $width, + 'height' => $height + ) + ); + Event::handle('EndProfileGetAvatar', array($this, $width, &$avatar)); + } + + $this->_fillAvatar($width, $avatar); } - if (array_key_exists($width, $this->_avatars)) { - return $this->_avatars[$width]; - } - - $avatar = null; - - if (Event::handle('StartProfileGetAvatar', array($this, $width, &$avatar))) { - $avatar = Avatar::pkeyGet(array('profile_id' => $this->id, - 'width' => $width, - 'height' => $height)); - Event::handle('EndProfileGetAvatar', array($this, $width, &$avatar)); - } - - $this->_avatars[$width] = $avatar; - return $avatar; } - function _fillAvatar($width, $avatar) - { - $this->_avatars[$width] = $avatar; - } - + // XXX: @Fix me gargargar + function _getAvatar($width) + { + if (empty($this->_avatars)) { + $this->_avatars = array(); + } + + // GAR! I cannot figure out where _avatars gets pre-filled with the avatar from + // the previously used profile! Please shoot me now! --Zach + if (array_key_exists($width, $this->_avatars)) { + // Don't return cached avatar unless it's really for this profile + if ($this->_avatars[$width]->profile_id == $this->id) { + return $this->_avatars[$width]; + } + } + + return null; + } + + function _fillAvatar($width, $avatar) + { + //common_debug("Storing avatar of width: {$avatar->width} and profile_id {$avatar->profile_id} in profile {$this->id}."); + $this->_avatars[$width] = $avatar; + + } + function getOriginalAvatar() { $avatar = DB_DataObject::factory('avatar'); @@ -330,6 +350,10 @@ class Profile extends Managed_DataObject self::cacheSet($keypart, implode(',', $ids)); } + if (!is_null($offset) && !is_null($limit)) { + $ids = array_slice($ids, $offset, $limit); + } + return User_group::multiGet('id', $ids); } @@ -1454,4 +1478,8 @@ class Profile extends Managed_DataObject { return $this; } + + static function pivotGet($key, $values, $otherCols=array()) { + return Memcached_DataObject::pivotGet('Profile', $key, $values, $otherCols); + } } diff --git a/classes/Profile_role.php b/classes/Profile_role.php index d89992b842..61ec9ba9df 100644 --- a/classes/Profile_role.php +++ b/classes/Profile_role.php @@ -55,6 +55,7 @@ class Profile_role extends Managed_DataObject 'foreign keys' => array( 'profile_role_profile_id_fkey' => array('profile', array('profile_id' => 'id')), ), + 'indexes' => array('profile_role_role_created_profile_id_idx' => array('role', 'created', 'profile_id')), ); } diff --git a/classes/Reply.php b/classes/Reply.php index 3cc4b942ca..f2c308fac4 100644 --- a/classes/Reply.php +++ b/classes/Reply.php @@ -40,6 +40,7 @@ class Reply extends Managed_DataObject 'reply_notice_id_idx' => array('notice_id'), 'reply_profile_id_idx' => array('profile_id'), 'reply_replied_id_idx' => array('replied_id'), + 'reply_profile_id_modified_notice_id_idx' => array('profile_id', 'modified', 'notice_id') ), ); } diff --git a/classes/User_im_prefs.php b/classes/User_im_prefs.php index cc9dea608d..90df216c54 100644 --- a/classes/User_im_prefs.php +++ b/classes/User_im_prefs.php @@ -80,26 +80,4 @@ class User_im_prefs extends Managed_DataObject ); } - /** - * We have two compound keys with unique constraints: - * (transport, user_id) which is our primary key, and - * (transport, screenname) which is an additional constraint. - * - * Currently there's not a way to represent that second key - * in the general keys list, so we're adding it here to the - * list of keys to use for caching, ensuring that it gets - * cleared as well when we change. - * - * @return array of cache keys - */ - function _allCacheKeys() - { - $ukeys = 'transport,screenname'; - $uvals = $this->transport . ',' . $this->screenname; - - $ckeys = parent::_allCacheKeys(); - $ckeys[] = $this->cacheKey($this->tableName(), $ukeys, $uvals); - return $ckeys; - } - } diff --git a/config.php.sample b/config.php.sample deleted file mode 100644 index 87a1977b5f..0000000000 --- a/config.php.sample +++ /dev/null @@ -1,309 +0,0 @@ - 'localhost', -// 'port' => 25, -// ); - -// exponential decay factor for tags, default 10 days -// raise this if traffic is slow, lower it if it's fast -// $config['tag']['dropoff'] = 86400.0 * 10; - -// exponential decay factor for popular (most favorited notices) -// default 10 days -- similar to tag dropoff -// $config['popular']['dropoff'] = 86400.0 * 10; - -// optionally show non-local messages in public timeline -// $config['public']['localonly'] = false; - -// hide certain users from public pages, by ID -// $config['public']['blacklist'][] = 123; -// $config['public']['blacklist'][] = 2307; - -// Mark certain notice sources as automatic and thus not -// appropriate for public feed -// $config['public]['autosource'][] = 'twitterfeed'; -// $config['public]['autosource'][] = 'rssdent'; -// $config['public]['autosource'][] = 'Ping.Fm'; -// $config['public]['autosource'][] = 'HelloTxt'; -// $config['public]['autosource'][] = 'Updating.Me'; - -// Do notice broadcasts offline -// If you use this, you must run the six offline daemons in the -// background. See the README for details. -// $config['queue']['enabled'] = true; - -// Queue subsystem -// subsystems: internal (default) or stomp -// using stomp requires an external message queue server -// $config['queue']['subsystem'] = 'stomp'; -// $config['queue']['stomp_server'] = 'tcp://localhost:61613'; -// use different queue_basename for each statusnet instance managed by the server -// $config['queue']['queue_basename'] = '/queue/statusnet/'; - -// The following customise the behaviour of the various daemons: -// $config['daemon']['piddir'] = '/var/run'; -// $config['daemon']['user'] = false; -// $config['daemon']['group'] = false; - -// For installations with high traffic, statusnet can use MemCached to cache -// frequently requested information. Only enable the following if you have -// MemCached up and running: -// $config['memcached']['enabled'] = false; -// $config['memcached']['server'] = 'localhost'; -// $config['memcached']['port'] = 11211; - -// People tags -// Maximum number of tags a user can create: -// $config['peopletag']['maxtags'] = 100; -// Maximum number of people can have the same tag by the same user -// $config['peopletag']['maxpeople'] = 500; -// Types of users one can tag. -// Everyone. -// $config['peopletag']['allow_tagging']['all'] = true; -// Local only. -// $config['peopletag']['allow_tagging']['local'] = true; -// Subscriptions / Subscribers only (including remote) -// $config['peopletag']['allow_tagging']['subs'] = true; -// Remote. -// $config['peopletag']['allow_tagging']['remote'] = true; -// Examples: -// The following set of options allows tagging local users and -// remote subscribers / subscription. -// $config['peopletag']['allow_tagging']['all'] = false; -// $config['peopletag']['allow_tagging']['local'] = true; -// $config['peopletag']['allow_tagging']['subs'] = true; -// Or: -// $config['peopletag']['allow_tagging'] = array('local' => true, 'subs' =>true); - -// Disable post-by-email -// $config['emailpost']['enabled'] = false; - -// Disable SMS -// $config['sms']['enabled'] = false; - -// Twitter integration source attribute. Note: default is StatusNet -// $config['integration']['source'] = 'StatusNet'; - -// Enable bidirectional Twitter bridge -// -// NOTE: if you enable this you must also set $config['avatar']['path'] -// -// $config['twitterimport']['enabled'] = true; - -// Twitter OAuth settings. Documentation is at http://apiwiki.twitter.com/OAuth-FAQ -// $config['twitter']['consumer_key'] = 'YOURKEY'; -// $config['twitter']['consumer_secret'] = 'YOURSECRET'; - -// Edit throttling. Off by default. If turned on, you can only post 20 notices -// every 10 minutes. Admins may want to play with the settings to minimize inconvenience for -// real users without getting uncontrollable floods from spammers or runaway bots. - -// $config['throttle']['enabled'] = true; -// $config['throttle']['count'] = 100; -// $config['throttle']['timespan'] = 3600; - -// Config section for the built-in Facebook application -// $config['facebook']['apikey'] = 'APIKEY'; -// $config['facebook']['secret'] = 'SECRET'; - -// Add Google Analytics -// require_once('plugins/GoogleAnalyticsPlugin.php'); -// $ga = new GoogleAnalyticsPlugin('your secret code'); - -// Use Templating (template: /tpl/index.php) -// require_once('plugins/TemplatePlugin.php'); -// $tpl = new TemplatePlugin(); - -// Don't allow saying the same thing more than once per hour -// $config['site']['dupelimit'] = 3600; -// Don't enforce the dupe limit -// $config['site']['dupelimit'] = -1; - -// Base string for minting Tag URIs in Atom feeds. Defaults to -// "yourserver,2009". This needs to be configured properly for your Atom -// feeds to validate. See: http://www.faqs.org/rfcs/rfc4151.html and -// http://taguri.org/ Examples: -// $config['integration']['taguri'] = 'example.net,2008'; -// $config['integration']['taguri'] = 'admin@example.net,2009-03-09' - -// Don't use SSL -// $config['site']['ssl'] = 'never'; -// Use SSL only for sensitive pages (like login, password change) -// $config['site']['ssl'] = 'sometimes'; -// Use SSL for all pages -// $config['site']['ssl'] = 'always'; - -// Use a different hostname for SSL-encrypted pages -// $config['site']['sslserver'] = 'secure.example.org'; - -// Indent HTML and XML -// Enable (default) for easier to read markup for developers, -// disable to save some bandwidth. -// $config['site']['indent'] = true; - -// If you have a lot of status networks on the same server, you can -// store the site data in a database and switch as follows -// Status_network::setupDB('localhost', 'statusnet', 'statuspass', 'statusnet'); -// if (!Status_network::setupSite($_server, $_path)) { -// print "Error\n"; -// exit(1); -// } - -// How often to send snapshots; in # of web hits. Ideally, -// try to do this once per month (that is, make this equal to number -// of hits per month) -// $config['snapshot']['frequency'] = 10000; -// If you don't want to report statistics to the central server, uncomment. -// $config['snapshot']['run'] = 'never'; -// If you want to report statistics in a cron job instead. -// $config['snapshot']['run'] = 'cron'; - -// Support for file uploads (attachments), -// select supported mimetypes and quotas (in bytes) -// $config['attachments']['supported'] = array('image/png', 'application/ogg'); -// $config['attachments']['supported'] = true; //allow all file types to be uploaded - -// $config['attachments']['file_quota'] = 5000000; -// $config['attachments']['user_quota'] = 50000000; -// $config['attachments']['monthly_quota'] = 15000000; -// $config['attachments']['uploads'] = true; -// $config['attachments']['path'] = "/file/"; //ignored if site is private -// $config['attachments']['dir'] = INSTALLDIR . '/file/'; - -// $config['oohembed']['endpoint'] = 'http://oohembed.com/oohembed/'; diff --git a/doc-src/about b/doc-src/about index 5645c2cebe..e037b61692 100644 --- a/doc-src/about +++ b/doc-src/about @@ -2,13 +2,15 @@ -%%site.name%% is a -[micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service -based on the Free Software [StatusNet](http://status.net/) tool. +%%site.name%% is a stream-oriented social network service based on the +Free Software [StatusNet](http://status.net/) tool. -If you [register](%%action.register%%) for an account, -you can post small (%%site.textlimit%% chars or less) text notices -about yourself, where you are, what you're doing, or practically -anything you want. You can also subscribe to the notices of your -friends, or other people you're interested in, and follow them on the -Web or in an [RSS](http://en.wikipedia.org/wiki/RSS) feed. +If you [register](%%action.register%%) for an account, you can post +small (%%site.textlimit%% chars or less) text notices about yourself, +where you are, what you're doing, what you're working on or what +you're thinking about. You can also subscribe to the notices of your +friends, or other people you're interested in, and follow them +privately or on the Web. + +You can also post event invitations, bookmarks, polls, questions, or +other kinds of data. diff --git a/doc-src/badge b/doc-src/badge deleted file mode 100644 index 98cdcfce27..0000000000 --- a/doc-src/badge +++ /dev/null @@ -1,69 +0,0 @@ - - - - -Install the %%site.name%% badge on your blog or web site to show the latest updates -from you and your friends! - - - - - -Things to try --------------- - -* Click an avatar and the badge will refresh with that user's timeline -* Click a nickname to open a user's profile in your browser -* Click a notice's timestamp to view the notice in your browser -* @-replies and #tags are live links - -## Installation instructions - -Copy and paste the following JavaScript into an HTML page where -you want the badge to show up. Substitute your own ID in the user -parameter. - -
-	<script type="text/javascript" src="http://identi.ca/js/identica-badge.js">
-	{
-	   "user":"kentbrew",
-	   "server":"identi.ca",
-	   "headerText":" and friends"
-	}
-	</script>
-
-
- - - -Valid parameters for the badge: -------------------------------- - -* user : defaults to 7000 (@kentbrew) -* headerText : defaults to empty -* height : defaults to 350px -* width : defaults to 300px -* background : defaults to #193441. If you set evenBackground, oddBackground, - and headerBackground, you won't see it at all. -* border : defaults to 1px solid black -* userColor : defaults to whatever link color is set to on your page -* headerBackground : defaults to transparent -* headerColor : defaults to white -* evenBackground : defaults to #fff -* oddBackground : defaults to #eee -* thumbnailBorder : 1px solid black -* thumbnailSize : defaults to 24px -* padding : defaults to 3px -* server : defaults to identi.ca - -Licence -------- - -Identi.ca badge by [Kent Brewster](http://kentbrewster.com/identica-badge/). -Licenced under [CC-BY-SA-3](http://kentbrewster.com/rights-and-permissions/). diff --git a/doc-src/bookmarklet b/doc-src/bookmarklet deleted file mode 100644 index 0b77bf45a7..0000000000 --- a/doc-src/bookmarklet +++ /dev/null @@ -1,9 +0,0 @@ - - - - -A bookmarklet is a small piece of javascript code used as a bookmark. This one will let you post to %%site.name%% simply by selecting some text on a page and pressing the bookmarklet. - -Drag-and-drop the following link to your bookmarks bar or right-click it and add it to your browser favorites to keep it handy. - -Post to %%site.name%% diff --git a/doc-src/contact b/doc-src/contact index 75c3aa8364..4b31439c42 100644 --- a/doc-src/contact +++ b/doc-src/contact @@ -5,14 +5,6 @@ There are a number of options for getting in contact with responsible people for %%site.name%%. -Post a notice -------------- - -If you have a question about how to do something, just post a notice -with your question. People here like to answer messages. Watch the -[public timeline](%%action.public%%) for answers; they'll usually start -with "@" plus your user name. - Bugs ---- @@ -25,4 +17,10 @@ Email You can reach the responsible party for this server at [%%site.email%%](mailto:%%site.email%%). +Post a notice +------------- + +If you have a question about how to do something, just post a notice +with your question. Watch your inbox [public timeline](%%action.top%%) +for answers. diff --git a/doc-src/faq b/doc-src/faq index 589b18b8d8..ee7cd506a8 100644 --- a/doc-src/faq +++ b/doc-src/faq @@ -8,39 +8,43 @@ some answers. What is %%site.name%%? ---------------------- -%%site.name%% is a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service. +%%site.name%% is a stream oriented social network service. + You can use it to write short notices about yourself, where you are, and what you're doing, and those notices will be sent to all your friends and fans. -How is %%site.name%% different from Twitter, Jaiku, Pownce, Plurk, others? --------------------------------------------------------------------------- +You can also post event invitations, bookmarks, polls, and questions or +other kinds of social broadcasts. -%%site.name%% is an [Open Network Service](http://opendefinition.org/ossd). Our main -goal is to provide a fair and transparent service that preserves users' autonomy. In -particular, all the software used for %%site.name%% is [Free Software](http://en.wikipedia.org/wiki/Free_Software), and all the data is available -under the [%%license.title%%](%%license.url%%) license, making it Open Data. +How is %%site.name%% different from Twitter? +-------------------------------------------- -The software also implements the [OpenMicroBlogging](http://openmicroblogging.org/) protocol, meaning that you can have friends on other microblogging services -that can receive your notices. +Like [Twitter](http://twitter.com/), %%site.name%% is a light service +with a stream-oriented interface. It uses @-replies, hashtags, +provides search, and has private messages. It provides an API, and can +be integrated with SMS systems. You can create lists. -The goal here is *autonomy* -- you deserve the right to manage your own on-line -presence. If you don't like how %%site.name%% works, you can take your data and the source code and set up your own server (or move your account to another one). +Unlike Twitter, %%site.name%% allows more data than just plain text +and links to travel across the network. You can install the StatusNet +software that runs %%site.name%% on your own servers, since it's Free +and Open Source software. You can make groups, and share privately +with those groups. -Where is feature X? -------------------- +You can make your site available only to people you choose. You can +customize it with your own themes and plugins, or download plugins +from the StatusNet site. -The software we run, [StatusNet](http://status.net/), is still in its early stages, -and many features people expect from microblogging sites are not yet implemented. Some important ones that are expected "soon": +How is %%site.name%% different from Yammer, SocialCast, or Salesforce Chatter? +------------------------------------------------------------------------------ -* More [AJAX](http://en.wikipedia.org/wiki/AJAX)-y interface -* Maps -* Cross-post to Pownce, Jaiku, etc. -* Pull messages from Twitter, Pownce, Jaiku, etc. -* [Facebook](http://www.facebook.com/) integration -* Image, video, audio notices - -There is [a list of bugs and features](http://status.net/bugs/) that you may find -interesting. New ideas or complaints are very welcome. +Like some enterprise social software services, StatusNet lets you +share privately with other people in your company. You can use +microapps to post richer kinds of data, use public and private groups +to share with team members, use extended profiles to show more about +yourself and your company, and review groups and users in a directory. +Unlike those other services, StatusNet is free and open source +software. You can install it on your own servers. You can customize +the theme and add plugins. diff --git a/doc-src/groups b/doc-src/groups index 5ff09600ef..823e5b16be 100644 --- a/doc-src/groups +++ b/doc-src/groups @@ -4,7 +4,8 @@ Users on %%site.name%% can create *groups* that other users can join. Groups can be a great way to share information and entertainment with -a group of people who have a common interest or background. +a group of people who have a common interest or background; who work +together on a team; or who have a particular knowledge or skill. You can find out about groups on the server on the [Groups](%%action.groups%%) page. You can join a group by clicking on @@ -13,16 +14,16 @@ the "Join" button either in the group list or on the group's home page. Starting a new group -------------------- -If you want, you can start a new group for friends and people with -common interests. Note that all groups are free for anyone to join. +You can start a new group for friends and colleagues. Note that all +groups are free for anyone to join. To start a new group, use the [new group](%%action.newgroup%%) tool and fill out the form. Describe your group as best you can if you want people to be able to find it. When choosing the nickname for your group, try to keep it short. The -nickname is included in every message to and from the group, so the -less chars the better. Try using acronyms for organizations, or +nickname is sometimes included in messages to and from the group, so +the less chars the better. Try using acronyms for organizations, or airport codes for places (like 'pdx' instead of 'portland'). Sending messages to a group @@ -33,14 +34,22 @@ anywhere in the message. If you have more than one group named, the notice will go to each group. Only members can send notices to a group, and groups do not respond to direct messages (DMs). +You can also select the group from the "To:" drop down when posting. + +You can make a group message private by clicking the "private" button +before posting. + Receiving messages ------------------ New group messages will appear in your inbox, and will also come to your phone or IM client if you've set them up to receive notices. -Remote groups -------------- +Private groups +-------------- -While it's technically possible, this version of StatusNet does not -support remote group membership. +The administrator can make a group private. For a private group, all +notices will marked as private for group members only. Also, +administrators will have to approve all new members to the group. + +Private groups are visible in the group directory. diff --git a/doc-src/help b/doc-src/help index 92d5d05afa..4bb9cd33a2 100644 --- a/doc-src/help +++ b/doc-src/help @@ -2,38 +2,18 @@ -%%site.name%% is a **microblogging service**. Users post short (%%site.textlimit%% -character) notices which are broadcast to their friends and fans using -the Web, RSS, or instant messages. +%%site.name%% is a **social service**. Users can post short +(%%site.textlimit%% character) status messages which are broadcast to +their friends and colleagues on the service and (optionally) onto the Web. + +You can also broadcast other types of data, like bookmarks, event +invitations, polls, and questions. If you'd like to try it out, first [register](%%action.register%%) a new account. -Then, on the [public timeline](%%action.public%%), enter your message into +Then, on the [public timeline](%%action.top%%), enter your message into the textbox at the top of the page, and click "Send". It will go out on the -public timeline and to anyone who is subscribed to your notices (probably nobody, -at first). +public timeline and to anyone who is subscribed to your notices. To subscribe to other people's notifications, go to their profile page and click the "subscribe" button. They'll get a notice that you're now -subscribed to their notifications, and, who knows?, they might subscribe -back. - -More help ---------- - -Here are some documents that you might find helpful in understanding -%%site.name%% and how to use it. - -* [About](%%doc.about%%) - an overview of the service -* [FAQ](%%doc.faq%%) - frequently-asked questions about %%site.name%% -* [Contact](%%doc.contact%%) - who to contact with questions about the service -* [IM](%%doc.im%%) - using the instant-message (IM) features of %%site.name%% -* [SMS](%%doc.sms%%) - tying your cellphone to %%site.name%% -* [Tags](%%doc.tags%%) - different ways to use tagging -* [Groups](%%doc.groups%%) - joining together in groups -* [Lists](%%doc.lists%%) - organize your contacts -* [OpenMicroBlogging](%%doc.openmublog%%) - subscribing to remote users -* [Privacy](%%doc.privacy%%) - %%site.name%%'s privacy policy -* [Source](%%doc.source%%) - How to get the StatusNet source code -* [Badge](%%doc.badge%%) - How to put a StatusNet badge on your blog or homepage -* [Bookmarklet](%%doc.bookmarklet%%) - Bookmarklet for posting Web pages -* [API](%%doc.api%%) - API for use by external clients +subscribed to their notifications. diff --git a/doc-src/lists b/doc-src/lists deleted file mode 100644 index 01c5d3b65f..0000000000 --- a/doc-src/lists +++ /dev/null @@ -1,69 +0,0 @@ - - - - -%%site.name%% supports -[tags](http://en.wikipedia.org/wiki/Tag_(metadata)) to help you -organize your activities here. You can use tags for people and for -notices. - -Tagging a notice ----------------- - -You can tag a notice using a *hashtag*; a # character followed by -letters and numbers as well as '.', '-', and '_'. Note that accented -latin characters are not supported, and non-roman scripts are right out. - -The HTML for the notice will link to a stream of all the other notices -with that tag. This can be a great way to keep track of a conversation. - -The most popular current tags on the site can be found in the [public -tag cloud](%%action.publictagcloud%%). Their size shows their -popularity and recency. - -Tagging yourself ----------------- - -You can also add tags for yourself on your [profile -settings](%%action.profilesettings%%) page or by using the edit tags -button on your profile page. Use single words to -describe yourself, your experiences and your interest. The tags will -become links on your profile page to a list of all the users on the -site who use that same tag. It can be a nice way to find people who -are related to you geographically or who have a common interest. - -Tagging others --------------- - -You can also tag other users by using the edit tags button next to -their profile. Such tags are called *people tags*. Once you have -created a people tag, you can add or remove users from it using the -tag's edit form. This makes it easy to organize your subscriptions -into groups and sort through them separately. Also, it will let -you create custom lists of people that others can subscribe to. - -You can also send a notice "to the attention of" your subscribers -whom you've marked with a particular tag (note: *not* people who've -marked themselves with that tag). "@#family hello" will send a -notice to all your subscribers you've marked with the tag 'family'. - -Private and public people tags ------------------------------- - -A private people tag is only visible to the creator, it cannot be -subscribed to, but the timeline can be viewed. To create a new -private prepend a '.' to the tag in the tags editing box. To set -an existing public tag as private or vice-versa, go to the tag's -edit page. - -Remote people tags ------------------- - -You can even [tag remote users](%%action.profilesettings%%). Just -enter the remote profile's URI and click on the "Fetch" button to -fetch the profile, you can then add tags and save them. - -Subscribing to the timeline of a people tag on another server also -works. Just copy the URL of the people tag's timeline page to the -[OStatus subscription](%%action.ostatussub%%) form. - diff --git a/doc-src/openmublog b/doc-src/openmublog deleted file mode 100644 index 267ad6e7c4..0000000000 --- a/doc-src/openmublog +++ /dev/null @@ -1,29 +0,0 @@ - - - - -[OpenMicroBlogging](http://openmicroblogging.org/) is a protocol that -lets users of one [microblogging](http://en.wikipedia.org/wiki/microblogging) service -subscribe to notices by users of another service. The protocol, based on -[OAuth](http://oauth.net/), is open and free, and doesn't depend on any -central authority to maintain the federated microblogs. - -The [StatusNet](http://status.net/) software that runs %%site.name%% supports -OpenMicroBlogging 0.1. Anyone can make a new installation of StatusNet on their -own servers, and users of that new installation can subscribe to notices from -%%site.name%%. - -Remote subscription -------------------- - -If you have an account on a remote site that supports OpenMicroBlogging, and you -want to subscribe to the notices of a user on this site, click on the "Subscribe" -link under their avatar on their profile page. This should take you to the -[remote subscription](%%action.remotesubscribe%%) page. Make sure that you've got the -right nickname registered, and enter your profile URL on the other microblogging -service. - -You'll be taken to your microblogging service, where you'll be asked to confirm the -subscription. When you confirm, your service will receive new notifications from -the user on %%site.name%%, and your service will forward them to you (using IM, SMS, -the Web, or whatever else). diff --git a/doc-src/tags b/doc-src/tags index 3e9065a100..8f42b5b752 100644 --- a/doc-src/tags +++ b/doc-src/tags @@ -51,19 +51,3 @@ subscribed to, but the timeline can be viewed. To create a new private prepend a '.' to the tag in the tags editing box. To set an existing public tag as private or vice-versa, go to the tag's edit page. - -The most used public tags are displayed in the -[public people tag cloud](%%action.publicpeopletagcloud%%). Their -size shows their frequency of use. - -Remote people tags ------------------- - -You can even [tag remote users](%%action.profilesettings%%). Just -enter the remote profile's URI and click on the "Fetch" button to -fetch the profile, you can then add tags and save them. - -Subscribing to the timeline of a people tag on another server also -works. Just copy the URL of the people tag's timeline page to the -[OStatus subscription](%%action.ostatussub%%) form. - diff --git a/doc-src/tos b/doc-src/tos index 8d5bac57fc..e54da049b7 100644 --- a/doc-src/tos +++ b/doc-src/tos @@ -14,7 +14,7 @@ particular, make sure that none of the prohibited items listed below appear in your notice stream or get linked to from your notice stream (things like spam, viruses, or hate content). -You can review our [Public Stream](%%action.public%%) to get a sense +You can review our [Public Stream](%%action.top%%) to get a sense of the types of notices that are welcome on our service (or not!). If you find a %%site.name%% account that you believe violates our terms of service, please check our [Contact](%%doc.contact%%) documentation. diff --git a/index.php b/index.php index 850208c9d1..1566399fa2 100644 --- a/index.php +++ b/index.php @@ -49,21 +49,29 @@ $action = null; function getPath($req) { + $p = null; + if ((common_config('site', 'fancy') || !array_key_exists('PATH_INFO', $_SERVER)) && array_key_exists('p', $req) ) { - return $req['p']; + $p = $req['p']; } else if (array_key_exists('PATH_INFO', $_SERVER)) { $path = $_SERVER['PATH_INFO']; $script = $_SERVER['SCRIPT_NAME']; if (substr($path, 0, mb_strlen($script)) == $script) { - return substr($path, mb_strlen($script)); + $p = substr($path, mb_strlen($script) + 1); } else { - return $path; + $p = $path; } } else { - return null; + $p = null; } + + // Trim all initial '/' + + $p = ltrim($p, '/'); + + return $p; } /** diff --git a/lib/action.php b/lib/action.php index 18ffb5e920..7d4e03915c 100644 --- a/lib/action.php +++ b/lib/action.php @@ -229,7 +229,7 @@ class Action extends HTMLOutputter // lawsuit Event::handle('EndShowLaconicaStyles', array($this)); } - $this->cssLink(common_path('js/css/smoothness/jquery-ui.css')); + $this->cssLink(common_path('js/css/smoothness/jquery-ui.css', StatusNet::isHTTPS())); if (Event::handle('StartShowUAStyles', array($this))) { $this->comment('[if IE]>inlineScript('var _peopletagAC = "' . - common_local_url('peopletagautocomplete') . '";'); - } + $this->inlineScript('var _peopletagAC = "' . + common_local_url('peopletagautocomplete') . '";'); $this->showScriptMessages(); // Anti-framing code to avoid clickjacking attacks in older browsers. // This will show a blank page if the page is being framed, which is diff --git a/lib/cache.php b/lib/cache.php index eb4eb66656..59110f74d8 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -43,11 +43,23 @@ */ class Cache { - var $_items = array(); + /** + * @var array additional in-process cache for web requests; + * disabled on CLI, unsafe for long-running daemons + */ + var $_items = array(); + var $_inlineCache = true; static $_inst = null; const COMPRESSED = 1; + private function __construct() { + // Potentially long-running daemons or maintenance scripts + // should not use an in-process cache as it becomes out of + // date. + $this->_inlineCache = (php_sapi_name() != 'cli'); + } + /** * Singleton constructor * @@ -166,7 +178,7 @@ class Cache common_perf_counter('Cache::get', $key); if (Event::handle('StartCacheGet', array(&$key, &$value))) { - if (array_key_exists($key, $this->_items)) { + if ($this->_inlineCache && array_key_exists($key, $this->_items)) { $value = unserialize($this->_items[$key]); } Event::handle('EndCacheGet', array($key, &$value)); @@ -193,7 +205,9 @@ class Cache if (Event::handle('StartCacheSet', array(&$key, &$value, &$flag, &$expiry, &$success))) { - $this->_items[$key] = serialize($value); + if ($this->_inlineCache) { + $this->_items[$key] = serialize($value); + } $success = true; @@ -244,7 +258,7 @@ class Cache common_perf_counter('Cache::delete', $key); if (Event::handle('StartCacheDelete', array(&$key, &$success))) { - if (array_key_exists($key, $this->_items)) { + if ($this->_inlineCache && array_key_exists($key, $this->_items)) { unset($this->_items[$key]); } $success = true; diff --git a/lib/cachingnoticestream.php b/lib/cachingnoticestream.php index f8ab2a85af..e68bb3a1f2 100644 --- a/lib/cachingnoticestream.php +++ b/lib/cachingnoticestream.php @@ -51,11 +51,13 @@ class CachingNoticeStream extends NoticeStream public $stream = null; public $cachekey = null; + public $useLast = true; - function __construct($stream, $cachekey) + function __construct($stream, $cachekey, $useLast = true) { $this->stream = $stream; $this->cachekey = $cachekey; + $this->useLast = $useLast; } function getNoticeIds($offset, $limit, $sinceId, $maxId) @@ -85,29 +87,31 @@ class CachingNoticeStream extends NoticeStream return $ids; } - // Check the cache to see if we have a "last-known-good" version. - // The actual cache gets blown away when new notices are added, but - // the "last" value holds a lot of info. We might need to only generate - // a few at the "tip", which can bound our queries and save lots - // of time. + if ($this->useLast) { + // Check the cache to see if we have a "last-known-good" version. + // The actual cache gets blown away when new notices are added, but + // the "last" value holds a lot of info. We might need to only generate + // a few at the "tip", which can bound our queries and save lots + // of time. - $laststr = $cache->get($idkey.';last'); + $laststr = $cache->get($idkey.';last'); - if ($laststr !== false) { - $window = explode(',', $laststr); - $last_id = $window[0]; - $new_ids = $this->stream->getNoticeIds(0, self::CACHE_WINDOW, $last_id, 0); + if ($laststr !== false) { + $window = explode(',', $laststr); + $last_id = $window[0]; + $new_ids = $this->stream->getNoticeIds(0, self::CACHE_WINDOW, $last_id, 0); - $new_window = array_merge($new_ids, $window); + $new_window = array_merge($new_ids, $window); - $new_windowstr = implode(',', $new_window); + $new_windowstr = implode(',', $new_window); - $result = $cache->set($idkey, $new_windowstr); - $result = $cache->set($idkey . ';last', $new_windowstr); + $result = $cache->set($idkey, $new_windowstr); + $result = $cache->set($idkey . ';last', $new_windowstr); - $ids = array_slice($new_window, $offset, $limit); + $ids = array_slice($new_window, $offset, $limit); - return $ids; + return $ids; + } } // No cache hits :( Generate directly and stick the results @@ -118,7 +122,10 @@ class CachingNoticeStream extends NoticeStream $windowstr = implode(',', $window); $result = $cache->set($idkey, $windowstr); - $result = $cache->set($idkey . ';last', $windowstr); + + if ($this->useLast) { + $result = $cache->set($idkey . ';last', $windowstr); + } // Return just the slice that was requested diff --git a/lib/default.php b/lib/default.php index 673c94769a..0f321efe0e 100644 --- a/lib/default.php +++ b/lib/default.php @@ -277,7 +277,7 @@ $default = 'allow_tagging' => array('all' => true), // equivalent to array('local' => true, 'remote' => true) 'desclimit' => null), 'oembed' => - array('endpoint' => 'http://oohembed.com/oohembed/', + array('endpoint' => 'https://noembed.com/embed/', 'order' => array('built-in', 'well-known', 'service', 'discovery'), ), 'search' => @@ -352,6 +352,5 @@ $default = array('cache' => true), // whether to cache the router object. Defaults to true, turn off for devel 'discovery' => array('cors' => false), // Allow Cross-Origin Resource Sharing for service discovery (host-meta, XRD, etc.) - 'performance' => array('high' => false), // disable some features for higher performance; default false - 'oldschool' => array('enabled' => false) // enable users to use old-style UI + 'performance' => array('high' => false) // disable some features for higher performance; default false ); diff --git a/lib/framework.php b/lib/framework.php index 05a8b7abda..69c1e4f6c8 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -151,6 +151,14 @@ function PEAR_ErrorToPEAR_Exception($err) if ($err->getCode() == DB_DATAOBJECT_ERROR_NODATA) { return; } + + $msg = $err->getMessage(); + $userInfo = $err->getUserInfo(); + + // Log this; push the message up as an exception + + common_log(LOG_ERR, "PEAR Error: $msg ($userInfo)"); + if ($err->getCode()) { throw new PEAR_Exception($err->getMessage(), $err->getCode()); } diff --git a/lib/groupeditform.php b/lib/groupeditform.php index b795c1387d..e943dcd19a 100644 --- a/lib/groupeditform.php +++ b/lib/groupeditform.php @@ -144,8 +144,8 @@ class GroupEditForm extends Form $this->out->elementStart('li'); $this->out->hidden('groupid', $id); // TRANS: Field label on group edit form. - $this->out->input('nickname', _('Nickname'), - ($this->out->arg('nickname')) ? $this->out->arg('nickname') : $nickname, + $this->out->input('newnickname', _('Nickname'), + ($this->out->arg('newnickname')) ? $this->out->arg('newnickname') : $nickname, // TRANS: Field title on group edit form. _('1-64 lowercase letters or numbers, no punctuation or spaces.')); $this->out->elementEnd('li'); diff --git a/lib/grouplist.php b/lib/grouplist.php index 34a43e61ae..e2adf57477 100644 --- a/lib/grouplist.php +++ b/lib/grouplist.php @@ -34,8 +34,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { require_once INSTALLDIR.'/lib/widget.php'; -define('GROUPS_PER_PAGE', 20); - /** * Widget to show a list of groups * diff --git a/lib/groupprofileblock.php b/lib/groupprofileblock.php index fc0679247b..58e553a4c2 100644 --- a/lib/groupprofileblock.php +++ b/lib/groupprofileblock.php @@ -153,4 +153,23 @@ class GroupProfileBlock extends ProfileBlock } $this->out->elementEnd('div'); } + + function showName() + { + parent::showName(); + $this->showAliases(); + } + + function showAliases() + { + $aliases = $this->group->getAliases(); + + if (!empty($aliases)) { + $this->out->elementStart('ul', 'group_aliases'); + foreach ($aliases as $alias) { + $this->out->element('li', 'group_alias', $alias); + } + $this->out->elementEnd('ul'); + } + } } diff --git a/lib/homestubnav.php b/lib/homestubnav.php new file mode 100644 index 0000000000..e9f4ba2308 --- /dev/null +++ b/lib/homestubnav.php @@ -0,0 +1,61 @@ +. + * + * @category Menu + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * stub sub-menu for settings and stuff + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class HomeStubNav extends Menu +{ + function getItems() + { + return array(array('top', + null, + // TRANS: Menu item in personal group navigation menu. + _m('MENU','Home'), + // TRANS: Menu item title in personal group navigation menu. + // TRANS: %s is a username. + _('Back to top'), + 'nav_return_top')); + } +} diff --git a/lib/oembedhelper.php b/lib/oembedhelper.php index 6d8064e660..903f80c581 100644 --- a/lib/oembedhelper.php +++ b/lib/oembedhelper.php @@ -61,7 +61,7 @@ class oEmbedHelper * Some known hosts are whitelisted with API endpoints where we * know they exist but autodiscovery data isn't available. * If autodiscovery links are missing and we don't recognize the - * host, we'll pass it to oohembed.com's public service which + * host, we'll pass it to noembed.com's public service which * will either proxy or fake info on a lot of sites. * * A few hosts are blacklisted due to known problems with oohembed, @@ -94,7 +94,7 @@ class oEmbedHelper case 'built-in': common_log(LOG_INFO, 'Considering built-in oEmbed methods...'); // Blacklist: systems with no oEmbed API of their own, which are - // either missing from or broken on oohembed.com's proxy. + // either missing from or broken on noembed.com's proxy. // we know how to look data up in another way... if (array_key_exists($host, self::$functionMap)) { common_log(LOG_INFO, 'We have a built-in method for ' . $host); diff --git a/lib/peopletaggroupnav.php b/lib/peopletaggroupnav.php index 3cfcb3cff3..70f7f5a425 100644 --- a/lib/peopletaggroupnav.php +++ b/lib/peopletaggroupnav.php @@ -79,7 +79,13 @@ class PeopletagGroupNav extends Widget // FIXME: we should probably pass this in $action = $this->action->trimmed('action'); - $nickname = $this->action->trimmed('tagger'); + + if (common_config('singleuser', 'enabled')) { + $nickname = User::singleUserNickname(); + } else { + $nickname = $this->action->arg('tagger'); + } + $tag = $this->action->trimmed('tag'); if ($nickname) { diff --git a/lib/popularity.php b/lib/popularity.php deleted file mode 100644 index 7ab259a391..0000000000 --- a/lib/popularity.php +++ /dev/null @@ -1,92 +0,0 @@ -. - * - * @category Widget - * @package StatusNet - * @author Evan Prodromou - * @author Brion Vibber - * @copyright 2010 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} - -/** - * Wrapper for fetching notices ranked according to popularity, - * broken out so it can be called from multiple actions with - * less code duplication. - */ -class Popularity -{ - public $limit = NOTICES_PER_PAGE; - public $offset = 0; - public $tag = false; - public $expiry = 600; - - /** - * Run a cached query to fetch notices, whee! - * - * @return Notice - */ - function getNotices() - { - // @fixme there should be a common func for this - if (common_config('db', 'type') == 'pgsql') { - if (!empty($this->tag)) { - $tag = pg_escape_string($this->tag); - } - } else { - if (!empty($this->tag)) { - $tag = mysql_escape_string($this->tag); - } - } - $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); - $cutoff = sprintf("fave.modified > '%s'", - common_sql_date(time() - common_config('popular', 'cutoff'))); - $qry = "SELECT notice.*, $weightexpr as weight "; - if(isset($tag)) { - $qry .= 'FROM notice_tag, notice JOIN fave ON notice.id = fave.notice_id ' . - "WHERE $cutoff and notice.id = notice_tag.notice_id and '$tag' = notice_tag.tag"; - } else { - $qry .= 'FROM notice JOIN fave ON notice.id = fave.notice_id ' . - "WHERE $cutoff"; - } - $qry .= ' GROUP BY notice.id,notice.profile_id,notice.content,notice.uri,' . - 'notice.rendered,notice.url,notice.created,notice.modified,' . - 'notice.reply_to,notice.is_local,notice.source,notice.conversation, ' . - 'notice.lat,notice.lon,location_id,location_ns,notice.repeat_of'; - $qry .= ' HAVING \'silenced\' NOT IN (SELECT role FROM profile_role WHERE profile_id=notice.profile_id)'; - $qry .= ' ORDER BY weight DESC'; - - $offset = $this->offset; - $limit = $this->limit + 1; - - $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; - - $notice = Memcached_DataObject::cachedQuery('Notice', - $qry, - 1200); - return $notice; - } -} \ No newline at end of file diff --git a/lib/popularnoticesection.php b/lib/popularnoticesection.php index e66df8f423..2000d302d4 100644 --- a/lib/popularnoticesection.php +++ b/lib/popularnoticesection.php @@ -22,7 +22,7 @@ * @category Widget * @package StatusNet * @author Evan Prodromou - * @copyright 2009 StatusNet, Inc. + * @copyright 2009,2011 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ @@ -45,15 +45,18 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { */ class PopularNoticeSection extends NoticeSection { + protected $viewer; + + function __construct($out, $viewer) + { + parent::__construct($out); + $this->viewer = $viewer; + } + function getNotices() { - $pop = new Popularity(); - if (!empty($this->out->tag)) { - $pop->tag = $this->out->tag; - } - $pop->limit = NOTICES_PER_SECTION; - $pop->expiry = 1200; - return $pop->getNotices(); + $stream = new PopularNoticeStream($this->viewer); + return $stream->getNotices(0, NOTICES_PER_SECTION + 1); } function title() diff --git a/lib/popularnoticestream.php b/lib/popularnoticestream.php new file mode 100644 index 0000000000..794fd87557 --- /dev/null +++ b/lib/popularnoticestream.php @@ -0,0 +1,109 @@ +. + * + * @category Popular + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Stream of notices sorted by popularity + * + * @category Popular + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class PopularNoticeStream extends ScopingNoticeStream +{ + function __construct($profile=null) + { + parent::__construct(new HideSilencedStream(new CachingNoticeStream(new RawPopularNoticeStream(), + 'popular', + false)), + $profile); + } +} + +class HideSilencedStream extends FilteringNoticeStream +{ + /** + * Only return notices where the profile is in scope + * + * @param Notice $notice The notice to check + * + * @return boolean whether to include the notice + */ + + function filter($notice) + { + $author = $notice->getProfile(); + return !$author->isSilenced(); + } +} + +class RawPopularNoticeStream extends NoticeStream +{ + function getNoticeIds($offset, $limit, $since_id, $max_id) + { + $weightexpr = common_sql_weight('modified', common_config('popular', 'dropoff')); + $cutoff = sprintf("modified > '%s'", + common_sql_date(time() - common_config('popular', 'cutoff'))); + + $fave = new Fave(); + $fave->selectAdd(); + $fave->selectAdd('notice_id'); + $fave->selectAdd("$weightexpr as weight"); + $fave->whereAdd($cutoff); + $fave->orderBy('weight DESC'); + $fave->groupBy('notice_id'); + + if (!is_null($offset)) { + $fave->limit($offset, $limit); + } + + // FIXME: $since_id, $max_id are ignored + + $ids = array(); + + if ($fave->find()) { + while ($fave->fetch()) { + $ids[] = $fave->notice_id; + } + } + + return $ids; + } +} + diff --git a/lib/profileaction.php b/lib/profileaction.php index eaf515e04a..1bc1494557 100644 --- a/lib/profileaction.php +++ b/lib/profileaction.php @@ -259,7 +259,7 @@ class ProfileAction extends Action // TRANS: H2 text for user group membership statistics. $this->statsSectionLink('usergroups', _('Groups')); $this->text(' '); - $this->text($this->profile->getGroups()->N); + $this->text($this->profile->getGroups(0, null)->N); $this->elementEnd('h2'); if ($groups) { diff --git a/lib/profileblock.php b/lib/profileblock.php index 432df0da5a..1162b78422 100644 --- a/lib/profileblock.php +++ b/lib/profileblock.php @@ -122,8 +122,13 @@ abstract class ProfileBlock extends Widget function showHomepage() { + $homepage = $this->homepage(); + if (!empty($homepage)) { - $this->out->element('a', 'profile_block_homepage', $homepage); + $this->out->element('a', + array('href' => $homepage, + 'class' => 'profile_block_homepage'), + $homepage); } } diff --git a/lib/profileminilist.php b/lib/profileminilist.php index 2c3fc4642d..7418c89232 100644 --- a/lib/profileminilist.php +++ b/lib/profileminilist.php @@ -47,6 +47,7 @@ define('PROFILES_PER_MINILIST', 8); class ProfileMiniList extends ProfileList { + const MAX_PROFILES = PROFILES_PER_MINILIST; // put it in the class function startList() { diff --git a/lib/router.php b/lib/router.php index c9b12ac8e7..25c436ac92 100644 --- a/lib/router.php +++ b/lib/router.php @@ -156,6 +156,7 @@ class Router 'backupaccount', 'deleteaccount', 'restoreaccount', + 'top', ); foreach ($main as $a) { @@ -334,6 +335,10 @@ class Router array('action' => 'showgroup'), array('nickname' => Nickname::DISPLAY_FMT)); + $m->connect('group/:nickname/', + array('action' => 'showgroup'), + array('nickname' => Nickname::DISPLAY_FMT)); + $m->connect('group/', array('action' => 'groups')); $m->connect('group', array('action' => 'groups')); $m->connect('groups/', array('action' => 'groups')); @@ -817,6 +822,22 @@ class Router array('action' => 'getfile'), array('filename' => '[A-Za-z0-9._-]+')); + // Common people-tag stuff + + $m->connect('peopletag/:tag', array('action' => 'peopletag', + 'tag' => self::REGEX_TAG)); + + $m->connect('selftag/:tag', array('action' => 'selftag', + 'tag' => self::REGEX_TAG)); + + $m->connect('main/addpeopletag', array('action' => 'addpeopletag')); + + $m->connect('main/removepeopletag', array('action' => 'removepeopletag')); + + $m->connect('main/profilecompletion', array('action' => 'profilecompletion')); + + $m->connect('main/peopletagautocomplete', array('action' => 'peopletagautocomplete')); + // In the "root" if (common_config('singleuser', 'enabled')) { @@ -880,6 +901,57 @@ class Router $m->connect('', array('action' => 'showstream', 'nickname' => $nickname)); + + // peopletags + + $m->connect('peopletags', + array('action' => 'peopletagsbyuser')); + + $m->connect('peopletags/private', + array('action' => 'peopletagsbyuser', + 'private' => 1)); + + $m->connect('peopletags/public', + array('action' => 'peopletagsbyuser', + 'public' => 1)); + + $m->connect('othertags', + array('action' => 'peopletagsforuser')); + + $m->connect('peopletagsubscriptions', + array('action' => 'peopletagsubscriptions')); + + $m->connect('all/:tag/subscribers', + array('action' => 'peopletagsubscribers', + 'tag' => self::REGEX_TAG)); + + $m->connect('all/:tag/tagged', + array('action' => 'peopletagged', + 'tag' => self::REGEX_TAG)); + + $m->connect('all/:tag/edit', + array('action' => 'editpeopletag', + 'tag' => self::REGEX_TAG)); + + foreach(array('subscribe', 'unsubscribe') as $v) { + $m->connect('peopletag/:id/'.$v, + array('action' => $v.'peopletag', + 'id' => '[0-9]{1,64}')); + } + $m->connect('user/:tagger_id/profiletag/:id/id', + array('action' => 'profiletagbyid', + 'tagger_id' => '[0-9]+', + 'id' => '[0-9]+')); + + $m->connect('all/:tag', + array('action' => 'showprofiletag', + 'tag' => self::REGEX_TAG)); + + foreach (array('subscriptions', 'subscribers') as $a) { + $m->connect($a.'/:tag', + array('action' => $a), + array('tag' => self::REGEX_TAG)); + } } else { $m->connect('', array('action' => 'public')); $m->connect('rss', array('action' => 'publicrss')); @@ -904,20 +976,6 @@ class Router // people tags - $m->connect('peopletag/:tag', array('action' => 'peopletag', - 'tag' => self::REGEX_TAG)); - - $m->connect('selftag/:tag', array('action' => 'selftag', - 'tag' => self::REGEX_TAG)); - - $m->connect('main/addpeopletag', array('action' => 'addpeopletag')); - - $m->connect('main/removepeopletag', array('action' => 'removepeopletag')); - - $m->connect('main/profilecompletion', array('action' => 'profilecompletion')); - - $m->connect('main/peopletagautocomplete', array('action' => 'peopletagautocomplete')); - $m->connect(':nickname/peopletags', array('action' => 'peopletagsbyuser', 'nickname' => Nickname::DISPLAY_FMT)); @@ -1015,6 +1073,10 @@ class Router $m->connect(':nickname', array('action' => 'showstream'), array('nickname' => Nickname::DISPLAY_FMT)); + + $m->connect(':nickname/', + array('action' => 'showstream'), + array('nickname' => Nickname::DISPLAY_FMT)); } // AtomPub API diff --git a/lib/secondarynav.php b/lib/secondarynav.php index 7d38e74ffc..29dc05b53d 100644 --- a/lib/secondarynav.php +++ b/lib/secondarynav.php @@ -79,9 +79,6 @@ class SecondaryNav extends Menu // TRANS: Secondary navigation menu item leading to e-mail contact information on the // TRANS: StatusNet site, where to report bugs, ... _m('MENU','Contact')); - $this->out->menuItem(common_local_url('doc', array('title' => 'badge')), - // TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. - _m('MENU','Badge')); Event::handle('EndSecondaryNav', array($this->action)); } $this->out->elementEnd('ul'); diff --git a/lib/settingsnav.php b/lib/settingsnav.php index 8b664fbae6..504b66fc6f 100644 --- a/lib/settingsnav.php +++ b/lib/settingsnav.php @@ -59,24 +59,9 @@ class SettingsNav extends Menu $nickname = $user->nickname; $name = $user->getProfile()->getBestName(); - // Stub section w/ home link - $this->action->elementStart('ul'); - $this->action->elementStart('li'); - // TRANS: Header in settings navigation panel. - $this->action->element('h3', null, _m('HEADER','Home')); - $this->action->elementStart('ul', 'nav'); - $this->out->menuItem(common_local_url('all', array('nickname' => - $nickname)), - // TRANS: Menu item in settings navigation panel. - _m('MENU','Home'), - // TRANS: Menu item title in settings navigation panel. - // TRANS: %s is a username. - sprintf(_('%s and friends'), $name), - $this->action == 'all', 'nav_timeline_personal'); - $this->action->elementEnd('ul'); - $this->action->elementEnd('li'); - $this->action->elementEnd('ul'); - + $stub = new HomeStubNav($this->action); + $this->submenu(_m('MENU','Home'), $stub); + $this->action->elementStart('ul'); $this->action->elementStart('li'); // TRANS: Header in settings navigation panel. diff --git a/lib/threadednoticelist.php b/lib/threadednoticelist.php index dbf3de642d..f0854767d6 100644 --- a/lib/threadednoticelist.php +++ b/lib/threadednoticelist.php @@ -569,17 +569,35 @@ class ThreadedNoticeListRepeatsItem extends NoticeListActorsItem return $profiles; } + function magicList($items) + { + if (count($items) > 4) { + return parent::magicList(array_slice($items, 0, 3)); + } else { + return parent::magicList($items); + } + } + function getListMessage($count, $you) { if ($count == 1 && $you) { // darn first person being different from third person! // TRANS: List message for notice repeated by logged in user. - return _m('REPEATLIST', 'You have repeated this notice.'); + return _m('REPEATLIST', 'You repeated this.'); + } else if ($count > 4) { + // TRANS: List message for when more than 4 people repeat something. + // TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. + // TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). + return sprintf(_m('%%s and %d other repeated this.', + '%%s and %d others repeated this.', + $count - 3), + $count - 3); } else { - // TRANS: List message for repeated notices. - // TRANS: %d is the number of users that have repeated a notice. - return sprintf(_m('One person has repeated this notice.', - '%d people have repeated this notice.', + // TRANS: List message for favoured notices. + // TRANS: %%s is a list of users liking a notice. + // TRANS: Plural is based on the number of of users that have favoured a notice. + return sprintf(_m('%%s repeated this.', + '%%s repeated this.', $count), $count); } diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index ba7892ef11..10be63ba27 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,19 +15,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:46+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:34+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -46,7 +47,7 @@ msgstr "حدث خطأ." #, php-format msgid "" "No configuration file found. Try running the installation program first." -msgstr "لم يتم العثور على ملف التشكيل. حاول تشغيل برنامج التثبيت أولاّ." +msgstr "تعذر العثور على ملف التشكيل. حاول تشغيل برنامج التثبيت أولًا." #. TRANS: Error message displayed when trying to access a non-existing page. msgid "Unknown page" @@ -146,13 +147,13 @@ msgstr "لست والجًا." #. TRANS: Client error displayed trying to subscribe to a non-existing profile. #. TRANS: Client error displayed trying to perform an action related to a non-existing profile. msgid "No such profile." -msgstr "لا ملف كهذا." +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 "لا توجد لائحة كهذه." +msgstr "اللائحة المقصودة غير موجودة." #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. #. TRANS: %s is a username. @@ -177,7 +178,7 @@ msgstr "المدرجون" #. TRANS: Server error when page not found (404) #. TRANS: Server error when page not found (404). msgid "No such page." -msgstr "لا صفحة كهذه." +msgstr "الصفحة غير موجودة." #. TRANS: Client error when user not found for an action. #. TRANS: Client error when user not found for an rss related action. @@ -208,7 +209,6 @@ msgstr "لا صفحة كهذه." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -227,7 +227,7 @@ msgstr "لا صفحة كهذه." #. TRANS: Client error displayed when trying to access a mailbox without providing a user. #. TRANS: Client error displayed when calling a profile action without specifying a user. msgid "No such user." -msgstr "لا مستخدم كهذا." +msgstr "لا يوجد مستخدم بهذا الاسم." #. TRANS: Title of a user's own start page. msgid "Home timeline" @@ -316,8 +316,6 @@ msgstr "أرسل دعوة" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s والأصدقاء" @@ -332,7 +330,7 @@ msgstr "مستجدات %1$s وأصدقائه على %2$s!" #. TRANS: Client error displayed when trying to handle an unknown API method. #. TRANS: Client error displayed when coming across a non-supported API method. msgid "API method not found." -msgstr "لم يتم العثور على وسيلة API." +msgstr "تعذر العثور على وسيلة API." #. TRANS: Client error message. POST is a HTTP command. It should not be translated. #. TRANS: Client error. POST is a HTTP command. It should not be translated. @@ -686,7 +684,7 @@ msgstr "أنت قد كنت عضو في تلك المجموعة." #. TRANS: Client error displayed when trying to join a group while being blocked form joining it. #. TRANS: Error text shown when a user tries to join a group they are blocked from joining. msgid "You have been blocked from that group by the admin." -msgstr "لقد تم طردك من تلك المجموعة من قبل الإدارة." +msgstr "لقد طردتك إدارة هذه المجموعة." #. TRANS: Server error displayed when joining a group failed in the database. #. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed. @@ -965,7 +963,7 @@ msgstr "لا يسمح لك بحذف حالة مستخدم آخر." #. TRANS: Error message displayed trying to delete a non-existing notice. #. TRANS: Client error displayed trying to show a non-existing notice. msgid "No such notice." -msgstr "لا إشعار كهذا." +msgstr "الإشعار المطلوب غير موجود." #. TRANS: Client error displayed calling an unsupported HTTP error in API status show. #. TRANS: Client exception thrown when using an unsupported HTTP method. @@ -1217,7 +1215,7 @@ msgstr "يجب أن تلج لتغادر مجموعة." #. TRANS: Client error displayed if no remote group with a given name was found requesting group page. #. TRANS: Client error displayed if no local group with a given name was found requesting group page. msgid "No such group." -msgstr "لا مجموعة كهذه." +msgstr "لا توجد مجموعة بهذا الاسم." #. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID. #. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group. @@ -1258,7 +1256,7 @@ msgstr "" #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription msgid "Internal error: received both cancel and abort." -msgstr "خطأ داخلي: تم تلقي أمر إلغاء وتراجع" +msgstr "خطأ داخلي: وصل أمر إلغاء وأمر إجهاض." #. TRANS: Server error displayed when cancelling a queued group join request fails. #. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed. @@ -1387,7 +1385,7 @@ msgstr "لا يمكن أن تحذف عضوية شخص آخر." #. TRANS: %d is the non-existing profile ID number. #, php-format msgid "No such profile id: %d." -msgstr "لا يوجد ملف تعريف كهذا: %d." +msgstr "رقم الملف الشخصي هذا غير موجود: %d." #. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID. #. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to. @@ -1427,7 +1425,7 @@ msgstr "مُشترك فعلا ب%s." #. TRANS: Client error displayed trying to get a non-existing attachment. msgid "No such attachment." -msgstr "لا مرفق كهذا." +msgstr "المرفق غير موجود." #. TRANS: Client error displayed trying to get an avatar without providing a nickname. #. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname. @@ -1718,7 +1716,7 @@ msgstr "أكد العنوان" #. TRANS: %s can be 'email', 'jabber', or 'sms'. #, php-format msgid "The address \"%s\" has been confirmed for your account." -msgstr "لقد تم التأكد من عنوان حسابك \"%s\"." +msgstr "لقد تأكدنا من عنوان حسابك \"%s\"." #. TRANS: Title for page with a conversion (multiple notices in context). msgid "Conversation" @@ -1885,12 +1883,13 @@ msgstr "احذف هذه المجموعة." msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." -msgstr "أنت على وشك حذف إشعار بشكل دائم. عندما تقوم بذلك لن تتمكن من التراجع." +msgstr "" +"أنت على وشك حذف الإشعار نهائيًا. تتمكن من التراجع عن هذه الخطوة بعد تنفيذها." #. TRANS: Page title when deleting a notice. #. TRANS: Fieldset legend for the delete notice form. msgid "Delete notice" -msgstr "احذف الإشعار" +msgstr "حذف إشعار" #. TRANS: Message for the delete notice form. msgid "Are you sure you want to delete this notice?" @@ -1951,6 +1950,79 @@ msgstr "أضف إلى المفضلات" msgid "No such document \"%s\"." msgstr "لا مستند باسم \"%s\"." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "الرئيسية" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "مساعدة" + +#, fuzzy +msgid "Getting started" +msgstr "حُفظت الإعدادات." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "عن" + +#, fuzzy +msgid "About this site" +msgstr "ألغِ منع هذا المستخدم" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "الأسئلة المتكررة" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "اتصل" + +#, fuzzy +msgid "Contact info" +msgstr "اتصل" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "الوسوم" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "مجموعات" + +#, fuzzy +msgid "Using groups" +msgstr "مجموعات المستخدمين" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -1963,7 +2035,7 @@ msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا." #. TRANS: Client error displayed trying to edit an application that does not exist. #. TRANS: Client error displayed trying to display a non-existing OAuth application. msgid "No such application." -msgstr "لا تطبيق كهذا." +msgstr "التطبيق المطلوب غير موجود." #. TRANS: Instructions for "Edit application" form. msgid "Use this form to edit your application." @@ -2085,7 +2157,7 @@ msgstr "استخدم هذا النموذج لتعديل اللائحة." #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. msgid "Delete aborted." -msgstr "تم إجهاض عملية المحو." +msgstr "أُجهضت عملية المحو." #. TRANS: Text in confirmation dialog for deleting a tag. msgid "" @@ -2410,7 +2482,7 @@ msgstr "لا مرفقات مرفوعة." #. TRANS: Client error displayed when requesting a non-existent file. msgid "No such file." -msgstr "لا ملف كهذا." +msgstr "الملف المقصود غير موجود." #. TRANS: Client error displayed when requesting a file without having read access to it. msgid "Cannot read file." @@ -2787,7 +2859,7 @@ msgstr "هذا صندوق بريدك الوارد، والذي يسرد رسائ #. TRANS: Client error displayed when trying to sent invites while they have been disabled. msgid "Invites have been disabled." -msgstr "تم تعطيل الدعوات." +msgstr "عُطّلت الدعوات." #. TRANS: Client error displayed when trying to sent invites while not logged in. #. TRANS: %s is the StatusNet site name. @@ -2848,9 +2920,9 @@ msgstr[5] "" msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" msgstr[0] "" -msgstr[1] "أرسلت الدعوة إلى الشخص التالي:" -msgstr[2] "أرسلت الدعوتين إلى الشخصين التاليين:" -msgstr[3] "أرسلت الدعوات إلى الأشخاص التالين:" +msgstr[1] "أُرسلت الدعوة إلى هذا الشخص:" +msgstr[2] "أُرسلت الدعوتان إلى هذين الشخصين:" +msgstr[3] "أُرسلت الدعوات إلى هؤلاء الأشخاص:" msgstr[4] "" msgstr[5] "" @@ -2859,9 +2931,7 @@ msgstr[5] "" msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" -msgstr "" -"سوف يتم بإبلاغك عندما يقبل من دعوتهم دعوتك ويسجلوا في الموقع. شكرا لك على " -"إنماء المجتمع!" +msgstr "سوف تُبلغ عند قبول دعوتك والتسجيل في الموقع. نشكر لك إنماء مجتمعنا!" #. TRANS: Form instructions. msgid "" @@ -3913,7 +3983,7 @@ msgstr "لا يمكنك إدارة الملحقات." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. msgid "No such plugin." -msgstr "لا ملحق كهذا." +msgstr "الملحق المقصود غير موجود." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" @@ -4076,7 +4146,7 @@ msgstr "سياسة الاشتراكات" #. TRANS: Dropdown field option for following policy. msgid "Let anyone follow me" -msgstr "السماح لأي شخص بمتابعتي" +msgstr "اسمح لأي شخص بمتابعتي" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" @@ -4084,11 +4154,11 @@ msgstr "اسألني أولا" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." -msgstr "حاجة الناس إلى إذنك ليتابعوا مستجداتك." +msgstr "هل يحتاج الناس إلى إذنك ليتابعوا مستجداتك؟" #. TRANS: Checkbox label in profile settings. msgid "Make updates visible only to my followers" -msgstr "اجعل المستجدات تظهر فقط لمتابعي" +msgstr "لا تجعل إشعاراتي تظهر إلا لمتابعيّ" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed @@ -4222,49 +4292,6 @@ msgstr "" "هنا %%site.name%%، خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-" "blogging) المبنية على البرنامج الحر [ستاتس نت](http://status.net/)." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "سحابة اللائحات العمومية" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "هذه هي أكبر اللائحات على %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "لم [يدرج](%%doc.tags%%) أحد أحدًا إلى الآن." - -#. 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 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 list " -"someone!" -msgstr "لم لا [تسجل حسابا](%%action.register%%) وتكون أول من يدرج شخصا!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "سحابة اللائحات" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "لا أحد مدرج" -msgstr[1] "شخص واحد مدرج" -msgstr[2] "شخصان مدرجان" -msgstr[3] "%d أشخاص مدرجون" -msgstr[4] "%d شخصًا مدرجًا" -msgstr[5] "%d شخص مدرج" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4309,7 +4336,7 @@ msgstr "أنت والج بالفعل!" #. TRANS: Client error displayed when password recovery code is not correct. msgid "No such recovery code." -msgstr "لا رمز استعادة كهذا." +msgstr "رمز الاستعادة هذا غير موجود." #. TRANS: Client error displayed when no proper password recovery code was submitted. msgid "Not a recovery code." @@ -4995,7 +5022,7 @@ msgid "FOAF for %s group" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5013,14 +5040,14 @@ msgstr "" "أخرى عديدة! ([اقرأ المزيد](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** مجموعة مستخدمين على %%%%site.name%%%%، خدمة [التدوين المُصغّر](http://" "en.wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [ستاتس نت]" @@ -5028,7 +5055,7 @@ msgstr "" #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." -msgstr "لا رسالة كهذه." +msgstr "الرسالة المطلوبة غير موجودة." #. 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." @@ -5146,11 +5173,6 @@ msgstr "اعرض الكل" msgid "Subscribers" msgstr "المشتركون" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "جميع المشتركين" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5245,11 +5267,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "لدى **%s** حساب على %%%%site.name%%%%، خدمة [التدوين المُصغّر](http://en." "wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [ستاتس نت]" @@ -5753,13 +5775,12 @@ msgstr "هؤلاء الأشخاص الذي يستمع %s إليهم." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "أنت لا تستمع الآن لإشعارات أحد. جرب الاشتراك بأناس تعرفهم. حاول أن [تبحث عن " "الأشخاص](%%action.peoplesearch%%) وابحث في أعضاء مجموعات أنت مهتم بها وفي " @@ -5877,7 +5898,7 @@ msgstr "استخدم هذا النموذج لتدرج المشتركين بك أ #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." -msgstr "لا وسم كهذا." +msgstr "لا يوجد وسم بهذا الاسم." #. TRANS: Client error displayed when trying to unblock a non-blocked user. msgid "You haven't blocked that user." @@ -6091,11 +6112,12 @@ msgid "License" msgstr "الرخصة" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "ستاتس نت برمجية حرة، يمكنك إعادة توزيعها وتعديلها وفقا لشروط رخصة غنو أفيرو " "العمومية كما نشرتها مؤسسة البرمجيات الحرة، برخصتها الثالثة أو أي نسخة تليها " @@ -6106,7 +6128,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6716,9 +6738,9 @@ msgid "No content for notice %s." msgstr "ابحث عن محتويات في الإشعارات" #. 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 "لا مستخدم كهذا." +msgstr "المستخدم \"%s\" غير موجود." #. TRANS: Client exception thrown when post to collection fails with a 400 status. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. @@ -6762,19 +6784,10 @@ msgid "saveSettings() not implemented." msgstr "الأمر لم يُجهزّ بعد." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "الرئيسية" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "الرئيسية" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7614,13 +7627,6 @@ msgctxt "MENU" msgid "Public" msgstr "العموم" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "مجموعات" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7846,6 +7852,11 @@ msgstr "شاهد الكل" msgid "See all groups you belong to." msgstr "شاهد كل المجموعات التي تنتمي إليها." +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "" @@ -8307,6 +8318,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "انضم %1$s للمجموعة %2$s على %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8601,9 +8616,8 @@ msgstr "في السياق" msgid "Repeated by" msgstr "كرره" -#, fuzzy msgid " " -msgstr " و " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice." @@ -9066,21 +9080,6 @@ msgstr "ابحث عن محتويات في الإشعارات" msgid "Find groups on this site" msgstr "ابحث عن مجموعات على هذا الموقع" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "مساعدة" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "عن" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "الأسئلة المتكررة" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9101,17 +9100,6 @@ msgctxt "MENU" msgid "Version" msgstr "النسخة" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "اتصل" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "شارة" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "قسم غير مُعنون" @@ -9195,7 +9183,7 @@ msgstr "التطبيقات المخولة المرتبطة" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "الأسلوب القديم" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" @@ -9425,11 +9413,11 @@ msgstr "أعجبك هذا." msgid "%%s and %d others like this." msgid_plural "%%s and %d others like this." msgstr[0] "" -msgstr[1] "%%s وشخص آخر أعجبه هذا." -msgstr[2] "%%s وشخصان آخران أعجبهما هذا." -msgstr[3] "%%s و%d أشخاص آخرين أعجبهم هذا" -msgstr[4] "%%s و%d شخصًا آخرًا أعجبه هذا" -msgstr[5] "%%s و%d شخص آخر أعجبه هذا." +msgstr[1] "%%s وواحد آخر أعجبهم هذا الإشعار." +msgstr[2] "%%s واثنان آخران أعجبهم هذا الإشعار." +msgstr[3] "%%s و%d آخرون أعجبهم هذا الإشعار." +msgstr[4] "%%s و%d واحدًا آخر أعجبهم هذا الإشعار." +msgstr[5] "%%s و%d آخرون أعجبهم هذا الإشعار." #. TRANS: List message for favoured notices. #. TRANS: %%s is a list of users liking a notice. @@ -9445,21 +9433,36 @@ msgstr[4] "أعجب %%s" msgstr[5] "أعجب %%s" #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "كرّرتَ هذا الإشعار." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "لم يكرر أحد هذا الإشعار" -msgstr[1] "كرّر شخص واحد هذا الإشعار" -msgstr[2] "كرّر شخصان هذا الإشعار" -msgstr[3] "كرّر %d أشخاص هذا الإشعار" -msgstr[4] "كرّر %d شخصًا هذا الإشعار" -msgstr[5] "كرّر %d شخص هذا الإشعار" +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "لم يعجب أحدًا" +msgstr[1] "أعجب %%s" +msgstr[2] "أعجب %%s" +msgstr[3] "أعجب %%s" +msgstr[4] "أعجب %%s" +msgstr[5] "أعجب %%s" #. TRANS: Form legend. #, php-format diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index c1b23608b8..aaf0be8f0a 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,14 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:48+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:37+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-09-11 15:11:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-core\n" @@ -141,7 +142,7 @@ msgstr "Узьнікла праблема з ключом Вашай сэсіі. #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." -msgstr "Не ўвайшлі ў сыстэму." +msgstr "Вы не ўвайшлі ў сыстэму." #. TRANS: Client error displayed trying to perform an action related to a non-existing profile. #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. @@ -214,7 +215,6 @@ msgstr "Няма такой старонкі." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -323,8 +323,6 @@ msgstr "Даслаць запрашэньне" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s і сябры" @@ -1978,6 +1976,74 @@ msgstr "Дадаць ва ўлюблёныя" msgid "No such document \"%s\"." msgstr "Няма такога дакумэнта «%s»." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Галоўная старонка" + +msgctxt "MENU" +msgid "Docs" +msgstr "Дакумэнтацыя" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Дапамога" + +msgid "Getting started" +msgstr "Пачатак працы" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Пра" + +msgid "About this site" +msgstr "Інфармацыя пра гэты сайт" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "Частыя пытаньні" + +msgid "Frequently asked questions" +msgstr "Частыя пытаньні" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Кантакты" + +msgid "Contact info" +msgstr "Кантактная інфармацыя" + +msgctxt "MENU" +msgid "Tags" +msgstr "Тэгі" + +msgid "Using tags" +msgstr "Выкарыстоўваемыя тэгі" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Групы" + +msgid "Using groups" +msgstr "Выкарыстоўваемыя групы" + +msgctxt "MENU" +msgid "API" +msgstr "API" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3399,13 +3465,12 @@ msgid "Not a supported data format." msgstr "Такі фармат зьвестак не падтрымліваецца." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "Налады IM" +msgstr "Налады інтэрфэйсу ў старым стылі" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "Калі Вы жадаеце «старым чынам», Вы можаце пазначыць гэта тут." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3413,13 +3478,13 @@ msgid "Settings saved." msgstr "Налады захаваныя." msgid "Only stream mode (no conversations) in timelines" -msgstr "" +msgstr "Толькі рэжым струменя (без абмеркаваньняў) ў стужцы падзеяў" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Паказаць старонку абмеркаваньня ў выглядзе гіерархічных дрэваў" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Паказаць мянушкі (не поўныя імёны) у стужцы падзеяў" #. TRANS: Button text to save a list. msgid "Save" @@ -4300,47 +4365,6 @@ msgstr "" "blogging), заснаваны на вольным праграмным забесьпячэньні [StatusNet](http://" "status.net/)." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "Воблака публічных сьпісаў" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Гэта самыя вялікія сьпісы на %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Пакуль што ніхто не дадаў да [сьпісаў](%%doc.tags%%)." - -#. 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 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 list " -"someone!" -msgstr "" -"Чаму не [стварыць рахунак](%%action.register%%) і стаць першым, хто створыць " -"новы сьпіс!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Воблака сьпісаў" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "%d асоба ў сьпісе" -msgstr[1] "%d асобы ў сьпісе" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4865,64 +4889,64 @@ msgstr "Вы ня можаце абмяжоўваць пясочніцай ка #. TRANS: Client error displayed trying to sandbox an already sandboxed user. msgid "User is already sandboxed." -msgstr "" +msgstr "Карыстальнік ужо ў рэжыме пясочніцы." #. TRANS: Client error displayed when trying to list a profile with an invalid list. #. TRANS: %s is the invalid list name. #, php-format msgid "Not a valid list: %s." -msgstr "" +msgstr "Няслушны сьпіс: %s." #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. #, php-format msgid "Users self-tagged with %1$s, page %2$d" -msgstr "" +msgstr "Карыстальнікі, якія самі дадалі тэг %1$s, старонка %2$d" #. TRANS: Title for the sessions administration panel. msgctxt "TITLE" msgid "Sessions" -msgstr "" +msgstr "Сэсіі" #. TRANS: Instructions for the sessions administration panel. msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Устаноўкі сэсіяў для гэтага сайта StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. msgctxt "LEGEND" msgid "Sessions" -msgstr "" +msgstr "Сэсіі" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. msgid "Handle sessions" -msgstr "" +msgstr "Кіраваньне сэсіямі" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. msgid "Handle sessions ourselves." -msgstr "" +msgstr "Самастойнае кіраваньне сэсіямі." #. TRANS: Checkbox label on the sessions administration panel. #. TRANS: Indicates if StatusNet should write session debugging output. msgid "Session debugging" -msgstr "" +msgstr "Наладка сэсіі" #. TRANS: Checkbox title on the sessions administration panel. msgid "Enable debugging output for sessions." -msgstr "" +msgstr "Дазволіць вывад наладкі для сэсіяў." #. TRANS: Title for submit button on the sessions administration panel. msgid "Save session settings" -msgstr "" +msgstr "Захаваць налады сэсіі" #. TRANS: Client error displayed trying to display an OAuth application while not logged in. msgid "You must be logged in to view an application." -msgstr "" +msgstr "Вы павінны ўвайсьці ў сыстэму, каб праглядаць дастасаваньне." #. TRANS: Header on the OAuth application page. msgid "Application profile" -msgstr "" +msgstr "Профіль дастасаваньня" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", @@ -4930,93 +4954,96 @@ msgstr "" #, 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] "" -msgstr[1] "" +msgstr[0] "Створаны %1$s — %2$s доступ па змоўчваньні — %3$d карыстальнік" +msgstr[1] "Створаны %1$s — %2$s доступ па змоўчваньні — %3$d карыстальнікі" #. TRANS: Header on the OAuth application page. msgid "Application actions" -msgstr "" +msgstr "Дзеяньні дастасаваньня" #. TRANS: Link text to edit application on the OAuth application page. msgctxt "EDITAPP" msgid "Edit" -msgstr "" +msgstr "Рэдагаваць" #. TRANS: Button text on the OAuth application page. #. TRANS: Resets the OAuth consumer key and secret. msgid "Reset key & secret" -msgstr "" +msgstr "Скінуць ключ і сакрэтнае слова" #. TRANS: Header on the OAuth application page. msgid "Application info" -msgstr "" +msgstr "Інфармацыя пра дастасаваньне" #. TRANS: Field label on application page. msgid "Consumer key" -msgstr "" +msgstr "Ключ спажыўца" #. TRANS: Field label on application page. msgid "Consumer secret" -msgstr "" +msgstr "Сакрэтнае слова спажыўца" #. TRANS: Field label on application page. -#, fuzzy msgid "Request token URL" -msgstr "Няслушны ключ запыту." +msgstr "URL-адрас ключа запыту" #. TRANS: Field label on application page. msgid "Access token URL" -msgstr "" +msgstr "URL-адрас ключа доступу" #. TRANS: Field label on application page. msgid "Authorize URL" -msgstr "" +msgstr "URL-адрас аўтарызацыі" #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " "not supported." msgstr "" +"Увага: Подпісы шыфруюцца HMAC-SHA1. Подпіс простым тэкстам не " +"падтрымліваецца." #. 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 "" +msgstr "Вы ўпэўнены, што жадаеце скінуць Ваш ключ спажыўца і сакрэтнае слова?" #. 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 "Улюблёныя запісы %1$s, старонка %2$d" #. TRANS: Server error displayed when favourite notices could not be retrieved from the database. msgid "Could not retrieve favorite notices." -msgstr "" +msgstr "Немагчыма аднавіць ўлюблёныя запісы." #. TRANS: Feed link text. %s is a username. #, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "" +msgstr "Стужка для ўлюблёных %s (стужкі актыўнасьці JSON)" #. TRANS: Feed link text. %s is a username. #, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" +msgstr "Стужка для ўлюблёных %s (RSS 1.0)" #. TRANS: Feed link text. %s is a username. #, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" +msgstr "Стужка для ўлюблёных %s (RSS 2.0)" #. TRANS: Feed link text. %s is a username. #, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "" +msgstr "Стужка для ўлюблёных %s (Atom)" #. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites. msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" +"Пакуль што Вы ня выбралі ніводнага ўлюблёнага запісу. Націсьніце адпаведную " +"кнопку каля запісу, які Вам спадабаўся, каб потым зьвярнуць на яго ўвагу." #. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in. #. TRANS: %s is a username. @@ -5025,6 +5052,8 @@ msgid "" "%s hasn't added any favorite notices yet. Post something interesting they " "would add to their favorites :)" msgstr "" +"%s пакуль што ня выбраў ўлюблёных запісаў. Пакіньце што-небудзь цікавае, каб " +"гэта было магчыма дадаць ва ўлюблёныя :)" #. 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. @@ -5035,49 +5064,52 @@ msgid "" "action.register%%%%) and then post something interesting they would add to " "their favorites :)" msgstr "" +"%s пакуль што не дадаў ўлюблёных запісаў. Чаму б не [стварыць рахунак](%%%%" +"action.register%%%%) і потым пакінуць што-небудзь цікавае, каб гэта было " +"магчыма дадаць ва ўлюблёныя :)" #. TRANS: Page notice for show favourites page. msgid "This is a way to share what you like." -msgstr "" +msgstr "Гэта спосаб падзяліцца тым, што Вам падабаецца." #. TRANS: Page title for first group page. %s is a group name. #, php-format msgid "%s group" -msgstr "" +msgstr "Група %s" #. TRANS: Page title for any but first group page. #. TRANS: %1$s is a group name, $2$s is a page number. #, php-format msgid "%1$s group, page %2$d" -msgstr "" +msgstr "Група %1$s, старонка %2$d" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (Activity Streams JSON)" -msgstr "" +msgstr "Стужка запісаў для групы %s (стужка актыўнасьці JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" +msgstr "Стужка запісаў для групы %s (RSS 1.0)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" +msgstr "Стужка запісаў для групы %s (RSS 2.0)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (Atom)" -msgstr "" +msgstr "Стужка запісаў для групы %s (Atom)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "FOAF for %s group" -msgstr "" +msgstr "Сябры сяброў групы %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5088,87 +5120,99 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"**%s** — група карыстальнікаў на %%%%site.name%%%%, сэрвісу [мікраблёгінга]" +"(http://en.wikipedia.org/wiki/Micro-blogging), які працуе на падставе " +"вольнага праграмнага забесьпячэньня [StatusNet](http://status.net/). Яе " +"удзельнікі могуць абменьвацца кароткімі паведамленьнямі пра сваё жыцьцё і " +"захапленьні. [Далучайцеся зараз](%%%%action.register%%%%), каб стаць сябрам " +"гэтай групы, і атрымаць іншыя магчымасьці! ([Даведацца болей](%%%%doc.help%%%" +"%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" +"**%s** — група карыстальнікаў на %%%%site.name%%%%, сэрвісу [мікраблёгінга]" +"(http://en.wikipedia.org/wiki/Micro-blogging), які працуе на падставе " +"вольнага праграмнага забесьпячэньня [StatusNet](http://status.net/). Яе " +"удзельнікі могуць абменьвацца кароткімі паведамленьнямі пра сваё жыцьцё і " +"захапленьні." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." -msgstr "" +msgstr "Няма такога паведамленьня." #. 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 "" +msgstr "Толькі адпраўшчык і атрымальнік могуць прачытаць гэтае паведамленьне." #. 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. #, php-format msgid "Message to %1$s on %2$s" -msgstr "" +msgstr "Паведамленьне для %1$s на %2$s" #. TRANS: Page title for single message display. #. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp. #, php-format msgid "Message from %1$s on %2$s" -msgstr "" +msgstr "Паведамленьне ад %1$s на %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. msgid "Not available." -msgstr "" +msgstr "Не даступна." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." -msgstr "" +msgstr "Запіс выдалены." #. TRANS: Title for private list timeline. #. 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 "" +msgstr "Прыватная стужка паведамленьняў для Вашага сьпісу %1$s, старонка %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. #. 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 "" +msgstr "Стужка паведамленьняў для Вашага сьпісу %1$s, старонка %2$d" #. TRANS: Title for private list timeline. #. 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 "" +msgstr "Стужка паведамленьняў сьпісу %1$s карыстальніка %2$s, старонка %3$d" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. #, php-format msgid "Private timeline of %s list by you" -msgstr "" +msgstr "Прыватная стужка паведамленьняў Вашага сьпісу %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 "Стужка паведамленьняў Вашага сьпісу %s" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. #, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "" +msgstr "Стужка паведамленьняў сьпісу %1$s карыстальніка %2$s" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. #, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "" +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. @@ -5176,11 +5220,11 @@ msgstr "" msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." -msgstr "" +msgstr "Гэта стужка сьпісу %1$s карыстальніка %2$s, але яна яшчэ пустая." #. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." -msgstr "" +msgstr "Паспрабуйце пазначыць болей людзей." #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). @@ -5189,11 +5233,13 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" +"Чаму б не [стварыць рахунак](%%%%action.register%%%%) і пачаць сачыць за " +"гэтай стужкай!" #. TRANS: Header on show list page. #. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" -msgstr "" +msgstr "Унесены ў сьпіс" #. TRANS: Content of "Listed" page if there are no listed users. #. TRANS: Content of "People following tag x" if there are no subscribed users. @@ -5204,87 +5250,84 @@ msgstr "" #. TRANS: Text for user user group membership statistics if user is not a member of any group. #. TRANS: Default content for section/sidebar widget. msgid "(None)" -msgstr "" +msgstr "(Няма)" #. 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 "" +msgstr "Паказаць усе" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. msgid "Subscribers" -msgstr "" - -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "" +msgstr "Падпісчыкі" #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format msgid "Notices by %1$s tagged %2$s" -msgstr "" +msgstr "Запісы %1$s з тэгам %2$s" #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" -msgstr "" +msgstr "Запісы %1$s з тэгам %2$s, старонка %3$d" #. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format msgid "Notices by %1$s, page %2$d" -msgstr "" +msgstr "Запісы %1$s, старонка %2$d" #. TRANS: Title for link to notice feed. #. TRANS: %1$s is a user nickname, %2$s is a hashtag. #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "" +msgstr "Стужка запісаў для %1$s з тэгам %2$s (RSS 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (Activity Streams JSON)" -msgstr "" +msgstr "Стужка запісаў для %s (стужка актыўнасьці JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (RSS 1.0)" -msgstr "" +msgstr "Стужка запісаў для %s (RSS 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (RSS 2.0)" -msgstr "" +msgstr "Стужка запісаў для %s (RSS 2.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (Atom)" -msgstr "" +msgstr "Стужка запісаў для %s (Atom)" #. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend. #. TRANS: More information at http://www.foaf-project.org. %s is a user nickname. #, php-format msgid "FOAF for %s" -msgstr "" +msgstr "Сябры сяброў %s" #. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." -msgstr "" +msgstr "Гэта стужка падзеяў для %1$s, але %1$s яшчэ нічога не напісаў." #. TRANS: Second sentence of empty list message for a stream for the user themselves. msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" +"Нядаўна ўбачылі што-небудзь цікавае? Вы яшчэ нічога не напісалі, цяпер добры " +"час, каб пачаць :)" #. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. @@ -5293,6 +5336,8 @@ msgid "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." msgstr "" +"Вы можаце паспрабаваць падштурхнуць %1$s ці [напісаць што-небудзь для яго](%%" +"%%action.newnotice%%%%?status_textarea=%2$s)." #. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. @@ -5303,46 +5348,54 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"**%s** мае рахунак на %%%%site.name%%%%, сэрвісе [мікраблёгаў](http://en." +"wikipedia.org/wiki/Micro-blogging), які працуе на базе вольнага праграмнага " +"забесьпячэньня [StatusNet](http://status.net/). [Далучайцеся зараз](%%%%" +"action.register%%%%), каб сачыць за паведамленьнямі **%s**'s і шмат чаго " +"іншага! ([Чытаць падрабязьней](%%%%doc.help%%%%))" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" +"**%s** мае рахунак на %%%%site.name%%%%, сэрвісе [мікраблёгаў](http://en." +"wikipedia.org/wiki/Micro-blogging), які працуе на базе вольнага праграмнага " +"забесьпячэньня [StatusNet](http://status.net/)." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format msgid "Repeat of %s" -msgstr "" +msgstr "Паўтор за %s" #. TRANS: Client error displayed trying to silence a user on a site where the feature is not enabled. #. TRANS: Client error on page to unsilence a user when the feature is not enabled. msgid "You cannot silence users on this site." -msgstr "" +msgstr "Вы ня можаце заглушаць карыстальнікаў на гэтым сайце." #. TRANS: Client error displayed trying to silence an already silenced user. msgid "User is already silenced." -msgstr "" +msgstr "Карыстальнік ужо заглушаны." #. TRANS: Title for site administration panel. msgctxt "TITLE" msgid "Site" -msgstr "" +msgstr "Сайт" #. TRANS: Instructions for site administration panel. msgid "Basic settings for this StatusNet site" -msgstr "" +msgstr "Асноўныя налады гэтага сайта StatusNet" #. TRANS: Client error displayed trying to save an empty site name. msgid "Site name must have non-zero length." -msgstr "" +msgstr "Назва сайту ня можа быць пустой." #. TRANS: Client error displayed trying to save site settings without a contact address. msgid "You must have a valid contact email address." -msgstr "" +msgstr "Вы павінны мець дзейны адрас электроннай пошты." #. TRANS: Client error displayed when a logo URL is not valid. msgid "Invalid logo URL." @@ -5356,100 +5409,105 @@ msgstr "Няслушны URL-адрас лягатыпу SSL." #. TRANS: %s is the invalid language code. #, php-format msgid "Unknown language \"%s\"." -msgstr "" +msgstr "Невядомая мова «%s»." #. TRANS: Client error displayed trying to save site settings with a text limit below 0. msgid "Minimum text limit is 0 (unlimited)." -msgstr "" +msgstr "Мінімальнае абмежаваньне тэксту складае 0 (неабмежаваны)." #. TRANS: Client error displayed trying to save site settings with a text limit below 1. msgid "Dupe limit must be one or more seconds." -msgstr "" +msgstr "Абмежаваньне дублікатаў павінна складаць адну ці болей сэкундаў." #. TRANS: Fieldset legend on site settings panel. msgctxt "LEGEND" msgid "General" -msgstr "" +msgstr "Агульныя" #. TRANS: Field label on site settings panel. msgctxt "LABEL" msgid "Site name" -msgstr "" +msgstr "Назва сайта" #. TRANS: Field title on site settings panel. msgid "The name of your site, like \"Yourcompany Microblog\"." -msgstr "" +msgstr "Назва Вашага сайту, напрыклад «Мікраблёг кампаніі …»" #. TRANS: Field label on site settings panel. msgid "Brought by" -msgstr "" +msgstr "Прадстаўленае" #. TRANS: Field title on site settings panel. msgid "Text used for credits link in footer of each page." msgstr "" +"Тэкст, які выкарыстоўваецца для пазначэньня аўтараў унізе кожнай старонкі." #. TRANS: Field label on site settings panel. msgid "Brought by URL" -msgstr "" +msgstr "URL-адрас прадстаўленага" #. TRANS: Field title on site settings panel. msgid "URL used for credits link in footer of each page." -msgstr "" +msgstr "URL-адрасы аўтараў унізе кожнай старонкі." #. TRANS: Field label on site settings panel. msgid "Email" -msgstr "" +msgstr "Электронная пошта" #. TRANS: Field title on site settings panel. msgid "Contact email address for your site." -msgstr "" +msgstr "Кантактны адрас электроннай пошты Вашага сайту." #. TRANS: Fieldset legend on site settings panel. msgctxt "LEGEND" msgid "Local" -msgstr "" +msgstr "Лякальная" #. TRANS: Dropdown label on site settings panel. msgid "Default timezone" -msgstr "" +msgstr "Часавы пас па змоўчваньні" #. TRANS: Dropdown title on site settings panel. msgid "Default timezone for the site; usually UTC." -msgstr "" +msgstr "Часавы пас па змоўчваньні для сайту; звычайна UTC." #. TRANS: Dropdown label on site settings panel. msgid "Default language" -msgstr "" +msgstr "Мова па змоўчваньні" #. TRANS: Dropdown title on site settings panel. msgid "" "The site language when autodetection from browser settings is not available." msgstr "" +"Мова сайту ў выпадку, калі аўтаматычнае вызначэньне наладаў з браўзэра " +"недаступнае." #. TRANS: Fieldset legend on site settings panel. msgctxt "LEGEND" msgid "Limits" -msgstr "" +msgstr "Абмежаваньні" #. TRANS: Field label on site settings panel. msgid "Text limit" -msgstr "" +msgstr "Абмежаваньні тэксту" #. TRANS: Field title on site settings panel. msgid "Maximum number of characters for notices." -msgstr "" +msgstr "Максымальная колькасьць сымбаляў для запісаў." #. TRANS: Field label on site settings panel. msgid "Dupe limit" -msgstr "" +msgstr "Абмежаваньне дубліраваньня" #. TRANS: Field title on site settings panel. msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +"Колькі трэба чакаць карыстальнікам (у сэкундах), каб даслаць тое самае яшчэ " +"раз." #. TRANS: Fieldset legend for form to change logo. msgid "Logo" -msgstr "" +msgstr "Лягатып" #. TRANS: Field label for StatusNet site logo. msgid "Site logo" @@ -5461,147 +5519,154 @@ msgstr "Лягатып SSL" #. TRANS: Button title for saving site settings. msgid "Save the site settings." -msgstr "" +msgstr "Захаваць налады сайта." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" -msgstr "" +msgstr "Паведамленьне сайта" #. TRANS: Instructions for site-wide notice tab in admin panel. msgid "Edit site-wide message" -msgstr "" +msgstr "Рэдагаваць абвяшчэньне для ўсяго сайту" #. TRANS: Server error displayed when saving a site-wide notice was impossible. msgid "Unable to save site notice." -msgstr "" +msgstr "Немагчыма захаваць абвяшчэньне для сайту." #. TRANS: Client error displayed when a site-wide notice was longer than allowed. msgid "Maximum length for the site-wide notice is 255 characters." msgstr "" +"Максымальная даўжыня для абвяшчэньня для ўсяго сайту складае 255 сымбаляў." #. TRANS: Label for site-wide notice text field in admin panel. msgid "Site notice text" -msgstr "" +msgstr "Тэкст абвяшчэньня сайта" #. TRANS: Tooltip for site-wide notice text field in admin panel. msgid "Site-wide notice text (255 characters maximum; HTML allowed)" -msgstr "" +msgstr "Тэкст абвяшчэньня сайта (максымум 255 сымбаляў; дазволены HTML)" #. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." -msgstr "" +msgstr "Захаваць абвяшчэньне сайта." #. TRANS: Title for SMS settings. msgid "SMS settings" -msgstr "" +msgstr "Налады СМС" #. TRANS: SMS settings page instructions. #. TRANS: %%site.name%% is the name of the site. #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" +"Вы можаце атрымліваць СМС-паведамленьні праз электронную пошту з %%site.name%" +"%." #. TRANS: Message given in the SMS settings if SMS is not enabled on the site. msgid "SMS is not available." -msgstr "" +msgstr "Адпраўка СМС недаступная." #. TRANS: Form legend for SMS settings form. msgid "SMS address" -msgstr "" +msgstr "СМС-адрас" #. TRANS: Form guide in SMS settings form. msgid "Current confirmed SMS-enabled phone number." -msgstr "" +msgstr "Цяперашні пацьверджаны тэлефонны нумар для СМС." #. TRANS: Form guide in IM settings form. msgid "Awaiting confirmation on this phone number." -msgstr "" +msgstr "Чакаецца пацьверджаньне гэтага тэлефоннага нумару." #. TRANS: Field label for SMS address input in SMS settings form. msgid "Confirmation code" -msgstr "" +msgstr "Код пацьверджаньня" #. TRANS: Form field instructions in SMS settings form. msgid "Enter the code you received on your phone." -msgstr "" +msgstr "Увядзіце код, які Вы атрымалі на Ваш тэлефон." #. TRANS: Button label to confirm SMS confirmation code in SMS settings. msgctxt "BUTTON" msgid "Confirm" -msgstr "" +msgstr "Пацьвердзіць" #. TRANS: Field label for SMS phone number input in SMS settings form. msgid "SMS phone number" -msgstr "" +msgstr "Нумар тэлефона для СМС" #. TRANS: SMS phone number input field instructions in SMS settings form. msgid "Phone number, no punctuation or spaces, with area code." -msgstr "" +msgstr "Нумар тэлефона, без знакаў пунктуацыі і прагалаў, з кодам краіны." #. TRANS: Form legend for SMS preferences form. msgid "SMS preferences" -msgstr "" +msgstr "Налады СМС" #. TRANS: Checkbox label in SMS preferences form. msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" +"Дасылаць мне паведамленьні праз СМС. Я разумею, што гэта можа прывесьці да " +"павелічэньня рахункаў ад майго апэратара." #. TRANS: Confirmation message for successful SMS preferences save. msgid "SMS preferences saved." -msgstr "" +msgstr "Налады СМС захаваныя." #. TRANS: Message given saving SMS phone number without having provided one. msgid "No phone number." -msgstr "" +msgstr "Няма нумару тэлефона." #. TRANS: Message given saving SMS phone number without having selected a carrier. msgid "No carrier selected." -msgstr "" +msgstr "Апэратар ня выбраны." #. TRANS: Message given saving SMS phone number that is already set. msgid "That is already your phone number." -msgstr "" +msgstr "Гэта ўжо Ваш нумар тэлефону." #. TRANS: Message given saving SMS phone number that is already set for another user. msgid "That phone number already belongs to another user." -msgstr "" +msgstr "Гэты нумар тэлефону ўжо належыць іншаму карыстальніку." #. TRANS: Message given saving valid SMS phone number that is to be confirmed. msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." msgstr "" +"Код пацьверджаньня быць дасланы на нумар тэлефону, які Вы дадалі. Праверце " +"Ваш тэлефон для атрыманьня коду і інструкцый для яго выкарыстаньня." #. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number. msgid "That is the wrong confirmation number." -msgstr "" +msgstr "Гэта няслушны код пацьверджаньня." #. TRANS: Server error thrown on database error canceling SMS phone number confirmation. msgid "Could not delete SMS confirmation." -msgstr "" +msgstr "Немагчыма выдаліць СМС-пацьверджаньне." #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." -msgstr "" +msgstr "СМС-пацьверджаньне скасаванае." #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. msgid "That is not your phone number." -msgstr "" +msgstr "Гэта ня Ваш нумар тэлефону." #. TRANS: Message given after successfully removing a registered SMS phone number. msgid "The SMS phone number was removed." -msgstr "" +msgstr "Нумар тэлефону для СМС быў выдалены." #. TRANS: Label for mobile carrier dropdown menu in SMS settings. msgid "Mobile carrier" -msgstr "" +msgstr "Мабільны апэратар" #. TRANS: Default option for mobile carrier dropdown menu in SMS settings. msgid "Select a carrier" -msgstr "" +msgstr "Выбар мабільнага апэратара" #. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings. #. TRANS: %s is an administrative contact's e-mail address. @@ -5610,15 +5675,18 @@ msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " "email but isn't listed here, send email to let us know at %s." msgstr "" +"Ваш апэратар мабільнай сувязі. Калі Вы ведаеце апэратара, які атрымлівае СМС-" +"паведамленьні праз электронную пошту, але якога няма ў гэтым сьпісе, " +"паведамьце нам на адрас %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. msgid "No code entered." -msgstr "" +msgstr "Код не ўведзены." #. TRANS: Title for admin panel to configure snapshots. msgctxt "TITLE" msgid "Snapshots" -msgstr "" +msgstr "Здымкі" #. TRANS: Instructions for admin panel to configure snapshots. msgid "Manage snapshot configuration" @@ -5802,8 +5870,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6130,7 +6197,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6138,7 +6205,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6767,19 +6834,10 @@ msgid "saveSettings() not implemented." msgstr "" #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7580,13 +7638,6 @@ msgctxt "MENU" msgid "Public" msgstr "" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7804,6 +7855,11 @@ msgstr "" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "" @@ -8182,6 +8238,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s далучыўся да групы %2$s" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8917,21 +8977,6 @@ msgstr "" msgid "Find groups on this site" msgstr "" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -8952,17 +8997,6 @@ msgctxt "MENU" msgid "Version" msgstr "" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "" @@ -9276,18 +9310,29 @@ msgstr[0] "" msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." -msgstr "" +msgid "You repeated this." +msgstr "Паўторана для %s" -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." msgstr[0] "" msgstr[1] "" +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Паўторана для %s" +msgstr[1] "Паўторана для %s" + #. TRANS: Form legend. #, php-format msgid "Search and list people" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 0433869bde..a2445d5099 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:49+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -204,7 +205,6 @@ msgstr "Няма такака страница." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -309,8 +309,6 @@ msgstr "Покани" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s и приятели" @@ -1979,6 +1977,84 @@ msgstr "Добавяне към любимите" msgid "No such document \"%s\"." msgstr "Няма такава бележка." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Лична страница" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Помощ" + +#, fuzzy +msgid "Getting started" +msgstr "Настройките са запазени." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "Относно" + +#, fuzzy +msgid "About this site" +msgstr "Разблокиране на този потребител" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "Въпроси" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Контакт" + +#, fuzzy +msgid "Contact info" +msgstr "Контакт" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Етикети" + +msgid "Using tags" +msgstr "" + +#. 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 "Групи" + +#, fuzzy +msgid "Using groups" +msgstr "Групи" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. #, fuzzy @@ -4326,47 +4402,6 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Общ поток, страница %d" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "Това са хората, които четат бележките на %s." - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "" - -#. 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 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 list " -"someone!" -msgstr "" - -#. TRANS: DT element on on page with public list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Не е открит методът в API." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5106,7 +5141,7 @@ msgid "FOAF for %s group" msgstr "Изходяща кутия за %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5119,14 +5154,14 @@ msgid "" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" #. TRANS: Client error displayed requesting a single message that does not exist. @@ -5247,11 +5282,6 @@ msgstr "" msgid "Subscribers" msgstr "Абонати" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Всички абонати" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5341,7 +5371,7 @@ msgstr "" msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. @@ -5867,8 +5897,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6219,7 +6248,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6227,7 +6256,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6907,21 +6936,11 @@ msgid "saveSettings() not implemented." msgstr "Командата все още не се поддържа." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Лична страница" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Лична страница" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7782,14 +7801,6 @@ msgctxt "MENU" msgid "Public" msgstr "Общ поток" -#. 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 "Групи" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8021,6 +8032,11 @@ msgstr "" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Страницата не е достъпна във вида медия, който приемате" @@ -8415,6 +8431,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s напусна групата %2$s" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9208,23 +9228,6 @@ msgstr "Търсене в съдържанието на бележките" msgid "Find groups on this site" msgstr "Търсене на групи в сайта" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Помощ" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "Относно" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "Въпроси" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9249,19 +9252,6 @@ msgctxt "MENU" msgid "Version" msgstr "Версия" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Контакт" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Табелка" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Неозаглавен раздел" @@ -9601,16 +9591,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Вече сте повторили тази бележка." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Вече сте повторили тази бележка." -msgstr[1] "Вече сте повторили тази бележка." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Повторено за %s" +msgstr[1] "Повторено за %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 4df5e1324e..077abe8fa5 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:42+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -133,7 +134,7 @@ msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit." #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." -msgstr "Nann-kevreet." +msgstr "Digevreet." #. TRANS: Client error displayed trying to perform an action related to a non-existing profile. #. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile. @@ -204,7 +205,6 @@ msgstr "N'eus ket eus ar bajenn-se." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -314,8 +314,6 @@ msgstr "Kas pedadennoù" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s hag e vignoned" @@ -1960,6 +1958,79 @@ msgstr "Ouzhpennañ d'ar pennrolloù" msgid "No such document \"%s\"." msgstr "N'eo ket bet kavet ar restr \"%s\"" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Degemer" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Skoazell" + +#, fuzzy +msgid "Getting started" +msgstr "Enrollet eo bet an arventennoù." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Diwar-benn" + +#, fuzzy +msgid "About this site" +msgstr "Distankañ an implijer-mañ" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "FAG" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Darempred" + +#, fuzzy +msgid "Contact info" +msgstr "Darempred" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Balizennoù" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Strolladoù" + +#, fuzzy +msgid "Using groups" +msgstr "Strolladoù implijerien" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4308,50 +4379,6 @@ 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 list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Koumoulenn a merkoù foran" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -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 list cloud. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "No one has [listed](%%doc.tags%%) anyone yet." -msgstr "" - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -#, fuzzy -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 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "N'eo ket bet kavet an implijer." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5081,7 +5108,7 @@ msgid "FOAF for %s group" msgstr "Mignon ur mignon evit ar strollad %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, fuzzy, php-format @@ -5096,14 +5123,14 @@ msgstr "" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." @@ -5230,11 +5257,6 @@ msgstr "Diskouez pep tra" msgid "Subscribers" msgstr "Koumananterien" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "An holl goumananterien" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5328,7 +5350,7 @@ msgstr "" msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." @@ -5854,8 +5876,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6207,7 +6228,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6215,7 +6236,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6869,19 +6890,10 @@ msgid "saveSettings() not implemented." msgstr "N'eo ket bet emplementet saveSettings()." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Degemer" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Degemer" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7722,13 +7734,6 @@ msgctxt "MENU" msgid "Public" msgstr "Foran" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Strolladoù" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7956,6 +7961,11 @@ msgstr "Diskouez pep tra" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "" @@ -8341,6 +8351,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s a zo bet er strollad %2$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9103,21 +9117,6 @@ msgstr "Klask alioù en danvez" msgid "Find groups on this site" msgstr "Klask strolladoù el lec'hienn-mañ" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Skoazell" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Diwar-benn" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "FAG" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9138,17 +9137,6 @@ msgctxt "MENU" msgid "Version" msgstr "Stumm" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Darempred" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Badj" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Rann hep titl" @@ -9473,17 +9461,28 @@ msgstr[0] "" msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Adkemeret ho peus ar c'hemenn-mañ." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Kemenn bet adkemeret dija." -msgstr[1] "Kemenn bet adkemeret dija." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Adkemeret evit %s" +msgstr[1] "Adkemeret evit %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index a5d7ab6fb1..ac13cb5d2d 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:44+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -219,7 +220,6 @@ msgstr "No existeix la pàgina." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -330,8 +330,6 @@ msgstr "Envia una invitació" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s i amics" @@ -1977,6 +1975,74 @@ msgstr "Afegeix als preferits" msgid "No such document \"%s\"." msgstr "No existeix el document «%s»" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Inici" + +msgctxt "MENU" +msgid "Docs" +msgstr "Documents" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Ajuda" + +msgid "Getting started" +msgstr "Primers passos" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Quant a" + +msgid "About this site" +msgstr "Quant a aquest lloc" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "Preguntes més freqüents" + +msgid "Frequently asked questions" +msgstr "Preguntes més freqüents" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Contacte" + +msgid "Contact info" +msgstr "Informació de contacte" + +msgctxt "MENU" +msgid "Tags" +msgstr "Etiquetes" + +msgid "Using tags" +msgstr "Ús de les etiquetes" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Grups" + +msgid "Using groups" +msgstr "Ús dels grups" + +msgctxt "MENU" +msgid "API" +msgstr "API" + +msgid "RESTful API" +msgstr "RESTful API" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3396,13 +3462,12 @@ msgid "Not a supported data format." msgstr "Format de data no suportat." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "Paràmetres de missatgeria instantània" +msgstr "Paràmetres d'interfície de la versió antiga" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "Si us agrada a l'antiga, podeu definir-ho des d'aquí." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3410,13 +3475,13 @@ msgid "Settings saved." msgstr "S'ha desat la configuració." msgid "Only stream mode (no conversations) in timelines" -msgstr "" +msgstr "Només mode de flux (sense converses) a les línies temporals" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Mostra la pàgina de converses com arbres jeràrquics." msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Mostra els sobrenoms (no els noms sencers) en les línies temporals" #. TRANS: Button text to save a list. msgid "Save" @@ -4292,47 +4357,6 @@ 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 list cloud. -msgid "Public list cloud" -msgstr "Núvol públic de llistes" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Aquestes són les llistes més extenses a %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Ningú ha [llistat](%%doc.tags%%) encara ningú." - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -msgid "Be the first to list someone!" -msgstr "Sigueu el primer en llistar algú!" - -#. 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 list " -"someone!" -msgstr "" -"Per què no hi [registreu un compte](%%action.register%%) i sou el primer en " -"llistar algú!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Núvol de llistes" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "S'ha llistat 1 persona" -msgstr[1] "S'han llistat %d persones" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5079,7 +5103,7 @@ msgid "FOAF for %s group" msgstr "Safata de sortida per %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5098,19 +5122,19 @@ msgstr "" "%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." 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. " +"[StatusNet](http://status.net/). Els seus membres comparteixen missatges " +"curts de llurs vides i interessos." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5232,11 +5256,6 @@ msgstr "Mostra-ho tot" msgid "Subscribers" msgstr "Subscriptors" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Tots els subscriptors" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5333,11 +5352,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" "ca.wikipedia.org/wiki/Microblogging) basat en l'eina lliure [StatusNet]" @@ -5851,15 +5870,12 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "No esteu escoltant els avisos de ningú ara mateix, proveu de subscriure-us a " "gent que coneixeu. Proveu de [cercar gent](%%action.peoplesearch%%), trobar " "membres de grups en què esteu interessats i en els nostres [usuaris " -"destacats](%%action.featured%%). Si sou un [usuari del Twitter](%%action." -"twittersettings%%), podeu subscriure-us automàticament a gent que ja seguiu " -"allà." +"destacats](%%action.featured%%)." #. 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. @@ -6193,11 +6209,12 @@ msgid "License" msgstr "Llicència" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "L'StatusNet és programari lliure; podeu redistribuir-lo i/o modificar-lo " "d'acord amb els termes de la llicència GNU Affero General Public License tal " @@ -6205,11 +6222,12 @@ msgstr "" "llicència, com (a la vostra discreció) per a una versió posterior. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Aquest programa es distribueix amb la voluntat que sigui útil, perquè sense " "cap mena de garantia; sense tampoc cap garantia implícita respecte a la seva " @@ -6877,19 +6895,10 @@ msgid "saveSettings() not implemented." msgstr "El saveSettings() no està implementat." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Inici" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Inici" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7702,13 +7711,6 @@ msgctxt "MENU" msgid "Public" msgstr "Públic" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Grups" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7931,6 +7933,11 @@ msgstr "Mostra-ho tot" msgid "See all groups you belong to." msgstr "Mostra tots els grups en què pertanyeu." +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "Torna a dalt" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Aquesta pàgina no està disponible en un tipus de mèdia que acceptis." @@ -8396,6 +8403,10 @@ msgstr "" #. 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. +#, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s s'ha unit al grup %2$s a %3$s" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8692,9 +8703,8 @@ msgstr "en context" msgid "Repeated by" msgstr "Repetit per" -#, fuzzy msgid " " -msgstr ", " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice." @@ -9151,21 +9161,6 @@ msgstr "Cerca el contingut dels avisos" msgid "Find groups on this site" msgstr "Cerca grups en aquest lloc" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Ajuda" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Quant a" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "Preguntes més freqüents" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9186,17 +9181,6 @@ msgctxt "MENU" msgid "Version" msgstr "Versió" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Contacte" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Insígnia" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Secció sense títol" @@ -9280,11 +9264,12 @@ msgstr "Aplicacions de connexió autoritzades" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "A l'antiga" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" msgstr "" +"Modificacions d'interfícies per als usuaris que els hi agrada a l'antiga" #. TRANS: Title of form to silence a user. msgctxt "TITLE" @@ -9518,16 +9503,26 @@ msgstr[1] "A %%s els hi agrada." #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" -msgid "You have repeated this notice." -msgstr "Heu repetit l'avís." +msgid "You repeated this." +msgstr "Ho heu repetit." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Una persona ha repetit l'avís." -msgstr[1] "%d persones ha repetit l'avís." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "%%s i %d altre ho han repetit." +msgstr[1] "%%s i %d altres ho han repetit." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%%s ho ha repetit." +msgstr[1] "%%s ho han repetit." #. TRANS: Form legend. #, php-format diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 6261aff4e3..00e1b8ade3 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -14,18 +14,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:46+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -209,7 +210,6 @@ msgstr "Tady žádná taková stránka není." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -322,8 +322,6 @@ msgstr "Pozvánky" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s a přátelé" @@ -2027,6 +2025,84 @@ msgstr "Přidat do oblíbených" msgid "No such document \"%s\"." msgstr "Žádný dokument \"%s\" neexistuje" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Moje stránky" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Nápověda" + +#, fuzzy +msgid "Getting started" +msgstr "Nastavení uloženo" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "O nás" + +#, fuzzy +msgid "About this site" +msgstr "Odblokovat tohoto uživatele" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Kontakt" + +#, fuzzy +msgid "Contact info" +msgstr "Kontakt" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Tagy" + +msgid "Using tags" +msgstr "" + +#. 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 "Skupiny" + +#, fuzzy +msgid "Using groups" +msgstr "Skupin uživatel" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4416,50 +4492,6 @@ msgstr "" "faq#mikroblog) služba založená na Free Software nástroji [StatusNet](http://" "status.net/)." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Veřejný tag cloud" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "Poslední nejpopulárnější značky na %s " - -#. 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 [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 list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "Pošlete něco jako první!" - -#. 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 list " -"someone!" -msgstr "" -"Proč ne [zaregistrovat účet](%%action.register%%) a poslat něco jako první!" - -#. TRANS: DT element on on page with public list cloud. -#, fuzzy -msgid "List cloud" -msgstr " API metoda nebyla nalezena." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5222,7 +5254,7 @@ msgid "FOAF for %s group" msgstr "FOAF pro skupinu %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5240,14 +5272,14 @@ msgstr "" "členem této skupiny a mnoha dalších! ([Čtěte více](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." 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 " @@ -5375,11 +5407,6 @@ msgstr "" msgid "Subscribers" msgstr "Odběratelé" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Všichni odběratelé" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5473,11 +5500,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** má účet na %%%%site.name%%%%, [mikro-blogovací](http://drbz.cz/i/" "napoveda-faq#mikroblog) službě založené na Free Software nástroji [StatusNet]" @@ -6007,13 +6034,12 @@ msgstr "Toto jsou lidé, jejímž sdělením %s naslouchá" #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Momentálně nenasloucháte níčím oznámením, zkuste se přihlásit k lidem které " "znáte. Zkuste [Vyhledávání lidí](%%action.peoplesearch%%), podívejte se po " @@ -6366,11 +6392,12 @@ msgid "License" msgstr "Licence" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet je svobodný software: můžete jej šířit a / nebo modifikovat podle " "podmínek GNU Affero General Public License, vydávané Free Software " @@ -6378,11 +6405,12 @@ msgstr "" "kterékoli pozdější verze. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Tento program je rozšiřován v naději, že bude užitečný, avšak BEZ JAKÉKOLI " "ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO " @@ -7061,21 +7089,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings () není implementována." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Moje stránky" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Moje stránky" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7926,14 +7944,6 @@ msgctxt "MENU" msgid "Public" msgstr "Veřejné" -#. 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 "Skupiny" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8167,6 +8177,11 @@ msgstr "" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Tato stránka není k dispozici v typu média která přijímáte." @@ -8655,6 +8670,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s se připojil(a) ke skupině %2$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9452,23 +9471,6 @@ msgstr "Najít v obsahu oznámení" msgid "Find groups on this site" msgstr "Najít skupiny na této stránce" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Nápověda" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "O nás" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9493,19 +9495,6 @@ msgctxt "MENU" msgid "Version" msgstr "Verze" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Kontakt" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Odznak" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Oddíl bez názvu" @@ -9852,17 +9841,28 @@ msgstr[2] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Již jste zopakoval toto oznámení." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Již jste zopakoval toto oznámení." -msgstr[1] "Již jste zopakoval toto oznámení." -msgstr[2] "Již jste zopakoval toto oznámení." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Opakováno uživatelem %s" +msgstr[1] "Opakováno uživatelem %s" +msgstr[2] "Opakováno uživatelem %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 2a549f9339..c17f48e4ef 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -20,6 +20,7 @@ # Author: Od1n # Author: Purodha # Author: The Evil IP address +# Author: Tiin # Author: Umherirrender # Author: W (aka Wuzur) # Author: Xqt @@ -30,17 +31,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -231,7 +233,6 @@ msgstr "Seite nicht vorhanden." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -342,8 +343,6 @@ msgstr "Einladung senden" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s und Freunde" @@ -458,17 +457,15 @@ msgid "Unblock user failed." msgstr "Freigeben des Benutzers fehlgeschlagen." #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "keine Unterhaltungs-ID" +msgstr "Keine Unterhaltungs-ID." #. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). -#, fuzzy, php-format +#, php-format msgid "No conversation with ID %d." -msgstr "Unterhaltung mit ID %d existiert nicht" +msgstr "Unterhaltung mit ID %d existiert nicht." #. TRANS: Title for conversion timeline. -#, fuzzy msgctxt "TITLE" msgid "Conversation" msgstr "Unterhaltung" @@ -1842,9 +1839,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Gib „%s” ein, um zu bestätigen, dass du dein Konto löschen willst." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account." -msgstr "Dein Konto für immer löschen" +msgstr "Dein Konto für immer löschen." #. TRANS: Client error displayed trying to delete an application while not logged in. msgid "You must be logged in to delete an application." @@ -2002,6 +1998,74 @@ msgstr "Zu Favoriten hinzufügen" msgid "No such document \"%s\"." msgstr "Unbekanntes Dokument „%s“" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Startseite" + +msgctxt "MENU" +msgid "Docs" +msgstr "Dokumentation" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Hilfe" + +msgid "Getting started" +msgstr "Erste Schritte" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Über" + +msgid "About this site" +msgstr "Über diese Seite" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "Häufig gestellte Fragen" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Kontakt" + +msgid "Contact info" +msgstr "Kontaktinformationen" + +msgctxt "MENU" +msgid "Tags" +msgstr "Tags" + +msgid "Using tags" +msgstr "Tags verwenden" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppen" + +msgid "Using groups" +msgstr "Gruppen verwenden" + +msgctxt "MENU" +msgid "API" +msgstr "API" + +msgid "RESTful API" +msgstr "RESTful API" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -2735,13 +2799,13 @@ msgstr "IM-Einstellungen" #. TRANS: Instant messaging settings page instructions. #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. #. TRANS: the order and formatting of link text and link should remain unchanged. -#, fuzzy, php-format +#, php-format msgid "" "You can send and receive notices through [instant messaging](%%doc.im%%). " "Configure your addresses and settings below." msgstr "" -"Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und " -"senden. Stelle deine Adressen und Einstellungen unten ein." +"Du kannst Nachrichten mittels [Instant Messaging](%%doc.im%%) empfangen und " +"senden. Lege deine Adressen und Einstellungen unten fest." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." @@ -3431,13 +3495,12 @@ msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "IM-Einstellungen" +msgstr "Alte UI-Einstellungen" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "Wenn du \"die alte Art\" bevorzugst, kannst du das hier festlegen." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3765,9 +3828,8 @@ msgid "Server to direct SSL requests to." msgstr "Server an den SSL Anfragen gerichtet werden sollen" #. TRANS: Button title text to store form data in the Paths admin panel. -#, fuzzy msgid "Save path settings." -msgstr "Website-Einstellungen speichern" +msgstr "Pfadeinstellungen speichern" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3895,7 +3957,7 @@ msgstr "Los geht's" #. 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-" @@ -3907,7 +3969,7 @@ msgstr "" "auf %%%%site.name%%%%, einem [Mikroblogging](http://de.wikipedia.org/wiki/" "Mikroblogging)-Dienst basierend auf der freien Software [StatusNet](http://" "status.net/). Du kannst leicht verfolgen, was sie tun, indem du die " -"Zeitleiste dieses Tags abonnierst." +"Zeitleiste dieser Liste abonnierst." #. 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). @@ -3929,7 +3991,7 @@ msgstr "Listen mit %1$s, Seite %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-" @@ -3940,7 +4002,7 @@ msgstr "" "Diese Listen sind für **%s**. Listen gruppieren ähnliche Leute auf %%%%site." "name%%%%, einem [Mikroblogging](http://de.wikipedia.org/wiki/Mikroblogging)-" "Dienst basierend auf der freien Software [StatusNet](http://status.net/). Du " -"kannst einfach verfolgen, was sie tun, indem du die Zeitleiste dieses Tags " +"kannst einfach verfolgen, was sie tun, indem du die Zeitleiste dieser Liste " "abonnierst." #. TRANS: Message displayed on page that displays lists a user was added to when there are none. @@ -4241,9 +4303,8 @@ msgstr "Konnte Tags nicht speichern." #. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup. #. TRANS: Page title for page where a user account can be restored from backup. -#, fuzzy msgid "Restore account" -msgstr "Neues Benutzerkonto erstellen" +msgstr "Konto wiederherstellen" #. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. #. TRANS: %s is the page limit. @@ -4335,52 +4396,6 @@ msgstr "" "Mikroblogging)-Dienst basierend auf der freien Software [StatusNet](http://" "status.net/)." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Öffentliche Tag-Wolke" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "Das sind die beliebtesten Tags auf „%s“" - -#. 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 [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 list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "Sei der erste, der etwas schreibt!" - -#. 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "API-Methode nicht gefunden." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "1 Person aufgeführt" -msgstr[1] "%d Personen aufgeführt" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -4498,12 +4513,10 @@ msgid "Password recovery requested" msgstr "Wiederherstellung des Passworts angefordert" #. TRANS: Title for password recovery page in password saved mode. -#, fuzzy msgid "Password saved" -msgstr "Passwort gespeichert." +msgstr "Passwort gespeichert" #. TRANS: Title for field label for password reset form. -#, fuzzy msgid "6 or more characters, and do not forget it!" msgstr "6 oder mehr Zeichen, und nicht vergessen!" @@ -4552,9 +4565,9 @@ msgstr "Kein ID-Argument." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "Datei nicht gefunden." +msgstr "Datei „%d“ nicht gefunden." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4569,7 +4582,6 @@ msgid "Registration successful" msgstr "Registrierung erfolgreich" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Registrieren" @@ -4579,7 +4591,6 @@ msgid "Registration not allowed." msgstr "Registrierung nicht erlaubt." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "" "Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." @@ -4602,13 +4613,11 @@ msgstr "" "Nachrichten und Links mit deinen Freunden und Kollegen teilen. " #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Bestätigen" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "E-Mail" @@ -4621,12 +4630,10 @@ msgstr "" "Passwortwiederherstellung verwendet" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Longer name, preferably your \"real\" name." -msgstr "Längerer Name, bevorzugt dein bürgerlicher Name" +msgstr "Längerer Name, vorzugsweise dein bürgerlicher Name." #. TRANS: Button text to register a user on account registration page. -#, fuzzy msgctxt "BUTTON" msgid "Register" msgstr "Registrieren" @@ -4938,20 +4945,18 @@ msgid "Users self-tagged with %1$s, page %2$d" msgstr "Benutzer, die sich selbst mit „%1$s“ getaggt haben - Seite %2$d" #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" -msgstr "Sitzung" +msgstr "Sitzungen" #. TRANS: Instructions for the sessions administration panel. msgid "Session settings for this StatusNet site" msgstr "Sitzungs-Einstellungen dieser StatusNet-Website" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" -msgstr "Sitzung" +msgstr "Sitzungen" #. TRANS: Checkbox title on the sessions administration panel. #. TRANS: Indicates if StatusNet should handle session administration. @@ -5001,7 +5006,6 @@ msgid "Application actions" msgstr "Programmaktionen" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "Bearbeiten" @@ -5151,7 +5155,7 @@ msgid "FOAF for %s group" msgstr "Postausgang von %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5169,14 +5173,14 @@ msgstr "" "help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [Mikroblogging]" "(http://de.wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien " @@ -5204,9 +5208,8 @@ msgid "Message from %1$s on %2$s" msgstr "Nachricht von %1$s auf %2$s" #. TRANS: Client exception thrown when trying a view a notice the user has no access to. -#, fuzzy msgid "Not available." -msgstr "IM ist nicht verfügbar." +msgstr "Nicht verfügbar." #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5297,20 +5300,14 @@ msgstr "(Kein)" #. 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 "Mehr anzeigen" +msgstr "Alle anzeigen" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. msgid "Subscribers" msgstr "Abonnenten" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Alle Abonnenten" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5406,11 +5403,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** hat ein Konto auf %%%%site.name%%%%, einem [Mikroblogging](http://de." "wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien Software " @@ -5431,7 +5428,6 @@ msgid "User is already silenced." msgstr "Benutzer ist bereits ruhig gestellt." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Seite" @@ -5471,13 +5467,11 @@ msgid "Dupe limit must be one or more seconds." msgstr "Duplikatlimit muss mehr als 1 Sekunde sein" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "Allgemein" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Seitenname" @@ -5517,7 +5511,6 @@ msgid "Contact email address for your site." msgstr "Kontakt-E-Mail-Adresse für deine Website." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" msgstr "Lokal" @@ -5535,7 +5528,6 @@ msgid "Default language" msgstr "Bevorzugte Sprache" #. TRANS: Dropdown title on site settings panel. -#, fuzzy msgid "" "The site language when autodetection from browser settings is not available." msgstr "" @@ -5543,10 +5535,9 @@ msgstr "" "Browser-Einstellungen nicht verfügbar ist." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" -msgstr "Limit" +msgstr "Limits" #. TRANS: Field label on site settings panel. msgid "Text limit" @@ -5579,9 +5570,8 @@ msgid "SSL logo" msgstr "SSL-Logo" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "Website-Einstellungen speichern" +msgstr "Die Website-Einstellungen speichern." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -5942,13 +5932,12 @@ msgstr "Dies sind die Leute, deren Nachrichten %s liest." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Du hast momentan noch niemanden abonniert. Benutze die [Personensuche](%%" "action.peoplesearch%%) um nach Freunden zu suchen oder besuche die [Beliebte " @@ -6028,10 +6017,9 @@ msgid "List %s" msgstr "Limit" #. TRANS: Title for list form when an error has occurred. -#, fuzzy msgctxt "TITLE" msgid "Error" -msgstr "Ajax-Fehler" +msgstr "Fehler" #. TRANS: Header in list form. msgid "User profile" @@ -6058,7 +6046,6 @@ msgstr "" "Leerzeichen getrennt" #. TRANS: Title for personal tag cloud section. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "Tags" @@ -6117,9 +6104,8 @@ msgid " (free service)" msgstr " (freier Dienst)" #. TRANS: Default value for URL shortening settings. -#, fuzzy msgid "[none]" -msgstr "Nichts" +msgstr "[keine]" #. TRANS: Default value for URL shortening settings. msgid "[internal]" @@ -6192,7 +6178,6 @@ msgid "Invalid default subscripton: \"%1$s\" is not a user." msgstr "Ungültiges Standard-Abonnement: „%1$s“ ist kein Benutzer." #. TRANS: Fieldset legend in user administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Profile" msgstr "Profil" @@ -6238,7 +6223,6 @@ msgid "Whether to allow users to invite new users." msgstr "Ist es Benutzern erlaubt, neue Benutzer einzuladen." #. TRANS: Button title to save user settings in user admin panel. -#, fuzzy msgid "Save user settings." msgstr "Benutzer-Einstellungen speichern" @@ -6298,11 +6282,12 @@ msgid "License" msgstr "Lizenz" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet ist freie Software: Sie dürfen es weiter verteilen und/oder " "verändern unter Berücksichtigung der Regeln zur GNU General Public License " @@ -6310,11 +6295,12 @@ msgstr "" "der Lizenz, oder jede höhere Version." #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Dieses Programm wird in der Hoffnung vertrieben, dass es nützlich sein wird, " "aber OHNE IRGENDEINE GARANTIE, sogar ohne die implizite Garantie der " @@ -6341,13 +6327,11 @@ msgid "Name" msgstr "Name" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Version" msgstr "Version" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Author(s)" msgstr "Autor(en)" @@ -6524,24 +6508,23 @@ msgstr "" "Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." #. TRANS: Client exception thrown in notice when trying to repeat a missing or deleted notice. -#, fuzzy msgid "Cannot repeat; original notice is missing or deleted." -msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." +msgstr "" +"Kann nicht wiederholt werden; ursprüngliche Nachricht fehlt oder ist " +"gelöscht worden." #. TRANS: Client error displayed when trying to repeat an own notice. -#, fuzzy msgid "You cannot repeat your own notice." msgstr "Du kannst deine eigene Nachricht nicht wiederholen." #. TRANS: Client error displayed when trying to repeat a non-public notice. -#, fuzzy msgid "Cannot repeat a private notice." -msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." +msgstr "Private Nachricht kann nicht wiederholt werden." #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#, fuzzy msgid "Cannot repeat a notice you cannot read." -msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." +msgstr "" +"Eine Nachricht, die du nicht lesen kannst, kann nicht wiederholt werden." #. TRANS: Client error displayed when trying to repeat an already repeated notice. msgid "You already repeated that notice." @@ -6549,9 +6532,9 @@ msgstr "Nachricht bereits wiederholt" #. TRANS: Client error displayed when trying to reply to a notice a the target has no access to. #. TRANS: %1$s is a user nickname, %2$d is a notice ID (number). -#, fuzzy, php-format +#, php-format msgid "%1$s has no access to notice %2$d." -msgstr "Benutzer hat keine letzte Nachricht." +msgstr "%1$s hat keinen Zugriff auf die Nachricht %2$d." #. TRANS: Server exception thrown when a notice cannot be saved. #. TRANS: Server exception thrown when a notice cannot be updated. @@ -6602,19 +6585,16 @@ msgid "The tag you are trying to rename to already exists." msgstr "Der Tag, zu dem du umbenennen willst, existiert bereits." #. TRANS: Server exception saving new tag without having a tagger specified. -#, fuzzy msgid "No tagger specified." -msgstr "Keine Gruppe angegeben" +msgstr "Kein Tagger angegeben." #. TRANS: Server exception saving new tag without having a tag specified. -#, fuzzy msgid "No tag specified." -msgstr "Keine Gruppe angegeben" +msgstr "Keine Tag angegeben." #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not create profile tag." -msgstr "Konnte Profil nicht speichern." +msgstr "Konnte Profil-Tag nicht erstellen." #. TRANS: Server exception saving new tag. #, fuzzy @@ -6687,7 +6667,6 @@ msgid "Could not delete subscription." msgstr "Konnte Abonnement nicht löschen." #. TRANS: Activity title when subscribing to another person. -#, fuzzy msgctxt "TITLE" msgid "Follow" msgstr "Folgen" @@ -6772,9 +6751,8 @@ msgid "User deletion in progress..." msgstr "Löschung des Benutzers in Arbeit …" #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Edit profile settings." -msgstr "Profil-Einstellungen ändern" +msgstr "Profil-Einstellungen bearbeiten." #. TRANS: Link text for link on user profile. msgctxt "BUTTON" @@ -6782,12 +6760,10 @@ msgid "Edit" msgstr "Bearbeiten" #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Send a direct message to this user." -msgstr "Direkte Nachricht an Benutzer versenden" +msgstr "Direkte Nachricht an diesen Benutzer versenden." #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Message" msgstr "Nachricht" @@ -6825,7 +6801,6 @@ msgid "Show more" msgstr "Mehr anzeigen" #. TRANS: Inline reply form submit button: submits a reply comment. -#, fuzzy msgctxt "BUTTON" msgid "Reply" msgstr "Antworten" @@ -6836,7 +6811,6 @@ msgid "Write a reply..." msgstr "Antwort verfassen..." #. TRANS: Tab on the notice form. -#, fuzzy msgctxt "TAB" msgid "Status" msgstr "Status" @@ -6913,7 +6887,7 @@ msgid "Expecting a root feed element but got a whole XML document." msgstr "Root-Element eines Feeds erwartet, aber ganzes XML-Dokument erhalten." #. TRANS: Client exception thrown when using an unknown verb for the activity importer. -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." msgstr "Unbekanntes Verb: „%s“" @@ -6927,9 +6901,8 @@ msgid "Cannot force remote user to subscribe." msgstr "Kann entfernten Benutzer nicht forciert abonnieren." #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. -#, fuzzy msgid "Unknown profile." -msgstr "Profil %s ist unbekannt" +msgstr "Unbekanntes Profil." #. TRANS: Client exception thrown when trying to import an event not related to the importing user. msgid "This activity seems unrelated to our user." @@ -6940,9 +6913,8 @@ msgid "Remote profile is not a group!" msgstr "Entferntes Profil ist keine Gruppe!" #. TRANS: Client exception thrown when trying to join a group the importing user is already a member of. -#, fuzzy msgid "User is already a member of this group." -msgstr "Du bist bereits Mitglied dieser Gruppe" +msgstr "Benutzer ist bereits Mitglied dieser Gruppe" #. TRANS: Client exception thrown when trying to import a notice by another user. #. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author. @@ -6956,9 +6928,9 @@ msgstr "Autor für nicht-vertrauten Benutzer wird nicht überschrieben." #. 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 "Kein Inhalt für Nachricht %d." +msgstr "Kein Inhalt für Nachricht %s." #. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. #, fuzzy, php-format @@ -6971,10 +6943,10 @@ msgstr "Unbekannter Benutzer." #. 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." @@ -7005,23 +6977,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() noch nicht implementiert." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" -msgstr "Homepage" - -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Homepage" +msgstr "Startseite" #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" msgstr "Admin" @@ -7040,7 +7000,6 @@ msgid "User configuration" msgstr "Benutzereinstellung" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Benutzer" @@ -7050,7 +7009,6 @@ msgid "Access configuration" msgstr "Zugangskonfiguration" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Zugang" @@ -7078,7 +7036,6 @@ msgid "Edit site notice" msgstr "Seitennachricht bearbeiten" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" msgstr "Seitennachricht" @@ -7088,17 +7045,15 @@ msgid "Snapshots configuration" msgstr "Snapshot-Konfiguration" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" -msgstr "Snapshots" +msgstr "Schnappschüsse" #. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" msgstr "Website-Lizenz einstellen" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "Lizenz" @@ -7655,16 +7610,14 @@ msgid "Commands:" msgstr "Befehl-Ergebnisse" #. TRANS: Help message for IM/SMS command "on". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn on notifications" -msgstr "Konnte Benachrichtigung nicht aktivieren." +msgstr "Benachrichtigungen aktivieren" #. TRANS: Help message for IM/SMS command "off". -#, fuzzy msgctxt "COMMANDHELP" msgid "turn off notifications" -msgstr "Konnte Benachrichtigung nicht deaktivieren." +msgstr "Benachrichtigungen deaktivieren" #. TRANS: Help message for IM/SMS command "help". msgctxt "COMMANDHELP" @@ -7683,7 +7636,6 @@ msgid "lists the groups you have joined" msgstr "Gruppen auflisten, denen du beigetreten bist" #. TRANS: Help message for IM/SMS command "tag". -#, fuzzy msgctxt "COMMANDHELP" msgid "tag a user" msgstr "Benutzer taggen" @@ -7765,10 +7717,9 @@ msgid "reply to the last notice from user" msgstr "Auf diese Nachricht antworten" #. TRANS: Help message for IM/SMS command "join ". -#, fuzzy msgctxt "COMMANDHELP" msgid "join group" -msgstr "Unbekannte Gruppe." +msgstr "Gruppe beitreten" #. TRANS: Help message for IM/SMS command "login". msgctxt "COMMANDHELP" @@ -7776,10 +7727,9 @@ msgid "Get a link to login to the web interface" msgstr "Link zum Anmelden auf der Webseite erhalten" #. TRANS: Help message for IM/SMS command "drop ". -#, fuzzy msgctxt "COMMANDHELP" msgid "leave group" -msgstr "Gruppe löschen" +msgstr "Gruppe verlassen" #. TRANS: Help message for IM/SMS command "stats". msgctxt "COMMANDHELP" @@ -7816,10 +7766,9 @@ msgstr "dasselbe wie „get“" #. 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 "Befehl noch nicht implementiert." +msgstr "noch nicht implementiert" #. TRANS: Help message for IM/SMS command "nudge ". msgctxt "COMMANDHELP" @@ -7855,25 +7804,15 @@ msgstr "Datenbankfehler." #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" -msgstr "Zeitleiste" - -#. TRANS: 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 "Gruppen" +msgstr "Öffentlich" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Limit" +msgstr "Listen" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -7953,7 +7892,6 @@ msgid "Feeds" msgstr "Feeds" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" msgstr "Alle" @@ -7963,7 +7901,6 @@ msgid "Tag" msgstr "Tag" #. TRANS: Dropdown field title on gallery action page for a list containing tags. -#, fuzzy msgid "Choose a tag to narrow list." msgstr "Wähle ein Tag, um die Liste einzuschränken" @@ -7981,16 +7918,14 @@ msgid "All members" msgstr "Alle Mitglieder" #. TRANS: Header for mini list of users with a pending membership request on a group page (h2). -#, fuzzy msgid "Pending" -msgstr "Ausstehend (%d)" +msgstr "Ausstehend" #. TRANS: Header for mini list of users that are blocked in a group page (h2). msgid "Blocked" msgstr "Blockiert" #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Admins" @@ -8010,17 +7945,16 @@ msgid "URL of the homepage or blog of the group or topic." msgstr "Adresse der Homepage oder Blogs der Gruppe oder des Themas." #. TRANS: Text area title for group description when there is no text limit. -#, fuzzy msgid "Describe the group or topic." -msgstr "Beschreibe die Gruppe oder das Thema" +msgstr "Beschreibe die Gruppe oder das Thema." #. TRANS: Text area title for group description. #. TRANS: %d is the number of characters available for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d character or less." msgid_plural "Describe the group or topic in %d characters or less." -msgstr[0] "Beschreibe die Gruppe oder das Thema in einem Zeichen" -msgstr[1] "Beschreibe die Gruppe oder das Thema in %d Zeichen" +msgstr[0] "Beschreibe die Gruppe oder das Thema in %d oder weniger Zeichen" +msgstr[1] "Beschreibe die Gruppe oder das Thema in %d oder weniger Zeichen" #. TRANS: Field title on group edit form. msgid "" @@ -8083,24 +8017,26 @@ msgid "Logo" msgstr "Logo" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Beliebte Nachrichten" +msgstr "Beliebte Gruppen" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Alle Gruppen" +msgstr "Aktive Gruppen" #. TRANS: Link description for seeing all groups. #. TRANS: Link description for seeing all lists. -#, fuzzy msgid "See all" -msgstr "Mehr anzeigen" +msgstr "Alle zeigen" #. TRANS: Link title for seeing all groups. msgid "See all groups you belong to." -msgstr "" +msgstr "Alle Gruppen, zu denen du gehörst, ansehen." + +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "Zurück zum Anfang" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8228,18 +8164,15 @@ msgid "Send" msgstr "Senden" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Einladungen" +msgstr "Einladungen senden." #. TRANS: Button text for joining a group. -#, fuzzy msgctxt "BUTTON" msgid "Join" msgstr "Beitreten" #. TRANS: Button text on form to leave a group. -#, fuzzy msgctxt "BUTTON" msgid "Leave" msgstr "Verlassen" @@ -8308,15 +8241,15 @@ msgstr "" #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. #. TRANS: Main body of new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following you on %2$s." -msgstr "%1$s folgt nun %2$s." +msgstr "%1$s folgt dir nun auf %2$s." #. TRANS: Subject of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s would like to listen to your notices on %2$s." -msgstr "%1$s hat deine Nachrichten auf „%2$s“ abonniert." +msgstr "%1$s würde gerne deine Nachrichten auf „%2$s“ abonnieren." #. TRANS: Main body of pending new-subscriber notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. @@ -8331,7 +8264,7 @@ msgstr "" #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, #. TRANS: %2$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "" "Faithfully yours,\n" "%1$s.\n" @@ -8339,23 +8272,18 @@ msgid "" "----\n" "Change your email address or notification options at %2$s" msgstr "" -"%1$s hat deine Nachrichten auf %2$s abonniert.\n" -"\n" -"%3$s\n" -"\n" -"%4$s%5$s%6$s\n" "Mit freundlichen Grüßen,\n" -"%2$s.\n" +"%1$s \n" "\n" "----\n" -"Du kannst deine E-Mail-Adresse und die Benachrichtigungseinstellungen auf %7" -"$s ändern.\n" +"Du kannst deine E-Mail-Adresse und die Benachrichtigungseinstellungen auf %2" +"$s ändern." #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Profile: %s" -msgstr "Profil" +msgstr "Profil: %s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -8365,7 +8293,7 @@ msgstr "Biografie: %s" #. TRANS: This is a paragraph in a new-subscriber e-mail. #. TRANS: %s is a URL where the subscriber can be reported as abusive. -#, fuzzy, php-format +#, php-format msgid "" "If you believe this account is being used abusively, you can block them from " "your subscribers list and report as spam to site administrators at %s." @@ -8383,7 +8311,7 @@ msgstr "Neue E-Mail-Adresse, um auf „%s“ zu schreiben" #. TRANS: Body of notification mail for new posting email address. #. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send #. TRANS: to to post by e-mail, %3$s is a URL to more instructions. -#, fuzzy, php-format +#, php-format msgid "" "You have a new posting address on %1$s.\n" "\n" @@ -8395,10 +8323,7 @@ msgstr "" "\n" "Schicke eine E-Mail an %2$s, um eine neue Nachricht hinzuzufügen.\n" "\n" -"Weitere E-Mail-Anweisungen unter %3$s.\n" -"\n" -"Viele Grüße,\n" -"%1$s" +"Weitere E-Mail-Anweisungen unter %3$s." #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. @@ -8427,7 +8352,7 @@ msgstr "Du wurdest von „%s“ angestupst" #. TRANS: Body for 'nudge' notification email. #. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname, #. TRANS: %3$s is a URL to post notices at. -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " "to post some news.\n" @@ -8445,10 +8370,7 @@ msgstr "" "\n" "%3$s\n" "\n" -"Antworte nicht auf diese E-Mail, sie wird niemanden erreichen.\n" -"\n" -"Mit freundlichen Grüßen,\n" -"%4$s\n" +"Antworte nicht auf diese E-Mail, sie wird niemanden erreichen." #. TRANS: Subject for direct-message notification email. #. TRANS: %s is the sending user's nickname. @@ -8459,7 +8381,7 @@ msgstr "Neue private Nachricht von „%s“" #. TRANS: Body for direct-message notification email. #. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, #. TRANS: %3$s is the message content, %4$s a URL to the message, -#, fuzzy, php-format +#, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" "\n" @@ -8483,10 +8405,7 @@ msgstr "" "\n" "%4$s\n" "\n" -"Antworte nicht auf diese E-Mail, sie wird niemanden erreichen.\n" -"\n" -"Mit freundlichen Grüßen,\n" -"%5$s" +"Antworte nicht auf diese E-Mail, sie wird niemanden erreichen." #. TRANS: Subject for favorite notification e-mail. #. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname. @@ -8499,7 +8418,7 @@ msgstr "%1$s (@%2$s) hat deine Nachricht als Favorit gespeichert" #. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text, #. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename, #. TRANS: %7$s is the adding user's nickname. -#, fuzzy, php-format +#, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" @@ -8520,11 +8439,8 @@ msgstr "" "%3$s\n" "Der Text der Nachricht ist:\n" "%4$s\n" -"Die Favoritenliste von %1$s ist hier:\n" -"%5$s\n" -"\n" -"Gruß,\n" -"%6$s\n" +"Die Favoritenliste von %1$s ist hier einsehbar:\n" +"%5$s" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #, php-format @@ -8550,7 +8466,7 @@ msgstr "" #. TRANS: %3$s is a URL to the notice, %4$s is the notice text, #. TRANS: %5$s is the text "The full conversation can be read here:" and a URL to the full conversion if it exists (otherwise empty), #. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user, -#, fuzzy, php-format +#, php-format msgid "" "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" "\n" @@ -8570,8 +8486,7 @@ msgid "" "\n" "%7$s" msgstr "" -"%1$s (@%9$s) hat dir gerade eine Nachricht (eine „@-Antwort“) auf „%2$s“ " -"gesendet.\n" +"%1$s hat dir gerade eine Nachricht (eine „@-Antwort“) auf „%2$s“ gesendet.\n" "\n" "Die Nachricht findest du hier:\n" "\n" @@ -8587,28 +8502,27 @@ msgstr "" "\n" "Eine Liste aller @-Antworten an dich findest du hier:\n" "\n" -"%7$s\n" -"\n" -"Hochachtungsvoll dein,\n" -"%2$s\n" -"\n" -"P.S. Diese E-Mail Benachrichtigung kannst du hier deaktivieren: %8$s\n" +"%7$s" #. TRANS: Subject of group join notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. +#, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s ist deiner Gruppe „%2$s“ auf %3$s beigetreten" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. #. TRANS: %5$s is a link to the addressed user's e-mail settings. -#, fuzzy, php-format +#, php-format msgid "%1$s has joined your group %2$s on %3$s." -msgstr "%1$s ist der Gruppe „%2$s“ beigetreten." +msgstr "%1$s ist deiner Gruppe „%2$s“ auf %3$s beigetreten." #. TRANS: Subject of pending group join request notification e-mail. #. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "%1$s wants to join your group %2$s on %3$s." -msgstr "%1$s ist der Gruppe „%2$s“ beigetreten." +msgstr "%1$s will deiner Gruppe „%2$s“ auf %3$s beitreten." #. 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, @@ -8640,20 +8554,17 @@ msgid "Inbox" msgstr "Posteingang" #. TRANS: Menu item title in mailbox menu. Leads to incoming private messages. -#, fuzzy msgid "Your incoming messages." -msgstr "Deine eingehenden Nachrichten" +msgstr "Deine eingehenden Nachrichten." #. TRANS: Menu item in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgctxt "MENU" msgid "Outbox" msgstr "Postausgang" #. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages. -#, fuzzy msgid "Your sent messages." -msgstr "Deine gesendeten Nachrichten" +msgstr "Deine gesendeten Nachrichten." #. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed. msgid "Could not parse message." @@ -8754,9 +8665,8 @@ msgid "Send" msgstr "Senden" #. TRANS: Header in message list. -#, fuzzy msgid "Messages" -msgstr "Nachricht" +msgstr "Nachrichten" #. TRANS: Followed by notice source (usually the client used to send the notice). #. TRANS: Followed by notice source. @@ -8764,7 +8674,6 @@ msgid "from" msgstr "von" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" msgstr "Web" @@ -8775,7 +8684,6 @@ msgid "xmpp" msgstr "XMPP" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" msgstr "E-Mail" @@ -8815,7 +8723,7 @@ msgstr "" #. TRANS: Link description to show more items in a list. msgid "More ▼" -msgstr "" +msgstr "Mehr ▼" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." @@ -8842,9 +8750,8 @@ msgid "Attach" msgstr "Anhängen" #. TRANS: Title for input field to attach a file to a notice. -#, fuzzy msgid "Attach a file." -msgstr "Datei anhängen" +msgstr "Datei anhängen." #. TRANS: Field label to add location to a notice. msgid "Share my location" @@ -8904,28 +8811,24 @@ msgstr "im Zusammenhang" msgid "Repeated by" msgstr "Wiederholt von" -#, fuzzy msgid " " -msgstr ", " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. -#, fuzzy msgid "Reply to this notice." -msgstr "Auf diese Nachricht antworten" +msgstr "Auf diese Nachricht antworten." #. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Antworten" #. TRANS: Link title in notice list item to delete a notice. -#, fuzzy msgid "Delete this notice from the timeline." -msgstr "Nachricht löschen" +msgstr "Diese Nachricht aus der Zeitleiste löschen." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. -#, fuzzy msgid "Notice repeated." -msgstr "Nachricht wiederholt" +msgstr "Nachricht wiederholt." #. TRANS: Field label for notice text. msgid "Update your status..." @@ -8987,7 +8890,6 @@ msgid "Add or remove people" msgstr "Personen hinzufügen oder entfernen" #. TRANS: Header in list edit form. -#, fuzzy msgctxt "HEADER" msgid "Search" msgstr "Suchen" @@ -9005,14 +8907,12 @@ msgid "%1$s list by %2$s." msgstr "%1$s – %2$s" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "Lizenz" +msgstr "Hinzugefügt" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "Abonnenten" @@ -9024,7 +8924,6 @@ msgid "Subscribers to %1$s list by %2$s." msgstr "%s abboniert." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Edit" msgstr "Bearbeiten" @@ -9045,7 +8944,6 @@ msgid "Edit" msgstr "Bearbeiten" #. TRANS: Privacy mode text in list list item for private list. -#, fuzzy msgctxt "MODE" msgid "Private" msgstr "Privat" @@ -9139,39 +9037,33 @@ msgstr "%s Abonnements" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Profile" msgstr "Profil" #. TRANS: Menu item title in personal group navigation menu. -#, fuzzy msgid "Your profile" -msgstr "Gruppenprofil" +msgstr "Dein Profil" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Replies" msgstr "Antworten" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Favoriten" #. TRANS: Replaces %s in '%s\'s favorite notices'. (Yes, we know we need to fix this.) -#, fuzzy msgctxt "FIXME" msgid "User" msgstr "Benutzer" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" -msgstr "Nachricht" +msgstr "Nachrichten" #. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" @@ -9205,9 +9097,8 @@ msgid "Settings" msgstr "SMS-Einstellungen" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Change your personal settings." -msgstr "Ändern der Profileinstellungen" +msgstr "Persönliche Einstellungen ändern." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -9225,24 +9116,20 @@ msgid "Logout" msgstr "Abmelden" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Logout from the site." -msgstr "Von der Seite abmelden" +msgstr "Von der Seite abmelden." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Login to the site." -msgstr "Auf der Seite anmelden" +msgstr "Auf der Seite anmelden." #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Folgen" +msgstr "Folgend" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Folgen" +msgstr "Folgende" #. TRANS: H2 text for user statistics. msgid "Statistics" @@ -9279,7 +9166,6 @@ msgid "User groups" msgstr "Benutzer-Gruppen" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" msgstr "Aktuelle Tags" @@ -9295,10 +9181,9 @@ msgid "Featured" msgstr "Beliebte Benutzer" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" -msgstr "Beliebte Beiträge" +msgstr "Beliebt" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" @@ -9314,7 +9199,6 @@ msgid "Repeat this notice?" msgstr "Diese Nachricht wiederholen?" #. TRANS: Button title to repeat a notice on notice repeat form. -#, fuzzy msgid "Repeat this notice." msgstr "Diese Nachricht wiederholen" @@ -9328,7 +9212,6 @@ msgid "Page not found." msgstr "Seite nicht gefunden." #. TRANS: Title of form to sandbox a user. -#, fuzzy msgctxt "TITLE" msgid "Sandbox" msgstr "Spielwiese" @@ -9387,7 +9270,6 @@ msgstr "" "* [Collecta](http://collecta.com/#q=%s)" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "People" msgstr "Leute" @@ -9397,7 +9279,6 @@ msgid "Find people on this site" msgstr "Finde Leute auf dieser Seite" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Notices" msgstr "Nachrichten" @@ -9410,59 +9291,26 @@ msgstr "Durchsuche den Inhalt der Nachrichten" msgid "Find groups on this site" msgstr "Finde Gruppen auf dieser Seite" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Hilfe" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Über" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. -#, fuzzy msgctxt "MENU" msgid "TOS" msgstr "AGB" #. TRANS: Secondary navigation menu item leading to privacy policy. -#, fuzzy msgctxt "MENU" msgid "Privacy" msgstr "Privatsphäre" #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. -#, fuzzy msgctxt "MENU" msgid "Source" msgstr "Quellcode" #. TRANS: Secondary navigation menu item leading to version information on the StatusNet site. -#, fuzzy msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Kontakt" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Plakette" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Abschnitt ohne Titel" @@ -9481,7 +9329,6 @@ msgid "Change your profile settings" msgstr "Ändern der Profileinstellungen" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Avatar" msgstr "Avatar" @@ -9491,7 +9338,6 @@ msgid "Upload an avatar" msgstr "Avatar hochladen" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Password" msgstr "Passwort" @@ -9501,17 +9347,15 @@ msgid "Change your password" msgstr "Ändere dein Passwort" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Email" -msgstr "Email" +msgstr "E-Mail" #. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "Ändere die E-Mail-Verarbeitung" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "URL" msgstr "URL" @@ -9550,7 +9394,7 @@ msgstr "Programme mit Zugriffserlaubnis" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Alte Schule" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" @@ -9589,9 +9433,8 @@ msgid "Database error inserting OAuth application user." msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." #. TRANS: Exception thrown when a database error occurs. -#, fuzzy msgid "Database error updating OAuth application user." -msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers." +msgstr "Datenbankfehler beim Aktualisieren des OAuth-Programm-Benutzers." #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. msgid "Tried to revoke unknown token." @@ -9660,15 +9503,13 @@ msgstr "Abonniere diesen Benutzer" #. TRANS: Button text to subscribe to a user. #. TRANS: Button text for subscribing to a list. -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" msgstr "Abonnieren" #. TRANS: Button title to subscribe to a user. -#, fuzzy msgid "Subscribe to this user." -msgstr "Abonniere diesen Benutzer" +msgstr "Abonniere diesen Benutzer." #. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" @@ -9679,7 +9520,6 @@ msgid "People Tagcloud as tagged" msgstr "Personen-Tag, wie markiert wurde" #. TRANS: Content displayed in a tag cloud section if there are no tags. -#, fuzzy msgctxt "NOTAGS" msgid "None" msgstr "Nichts" @@ -9748,18 +9588,17 @@ msgid "Error opening theme archive." msgstr "Fehler beim Öffnen des Theme-Archives." #. TRANS: Header for Notices section. -#, fuzzy msgctxt "HEADER" msgid "Notices" msgstr "Nachrichten" #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. -#, fuzzy, php-format +#, php-format msgid "Show reply" msgid_plural "Show all %d replies" -msgstr[0] "Mehr anzeigen" -msgstr[1] "Mehr anzeigen" +msgstr[0] "Antwort anzeigen" +msgstr[1] "Alle %d Antworten anzeigen" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" @@ -9768,10 +9607,10 @@ msgstr "Du" #. TRANS: For building a list such as "Jim, Bob, Mary and 5 others like this". #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. -#, fuzzy, php-format +#, php-format msgctxt "FAVELIST" msgid "%1$s and %2$s" -msgstr "%1$s – %2$s" +msgstr "%1$s und %2$s" #. TRANS: List message for notice favoured by logged in user. #, fuzzy @@ -9800,16 +9639,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Nachricht bereits wiederholt" -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Nachricht bereits wiederholt" -msgstr[1] "Nachricht bereits wiederholt" +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Antworten an %s" +msgstr[1] "Antworten an %s" #. TRANS: Form legend. #, fuzzy, php-format @@ -9868,15 +9717,13 @@ msgid "My colleagues at %s" msgstr "Meine Kollegen bei %s" #. TRANS: Label for drop-down of potential addressees. -#, fuzzy msgctxt "LABEL" msgid "To:" -msgstr "An" +msgstr "An:" #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. -#, fuzzy msgid "Private?" -msgstr "Privat" +msgstr "Privat?" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. #, fuzzy, php-format diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index aaa42d98b7..a37b6dbb5a 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -16,18 +16,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:50+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -210,7 +211,6 @@ msgstr "No such page." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -322,8 +322,6 @@ msgstr "Invitations" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s and friends" @@ -2013,6 +2011,84 @@ msgstr "Add to favourites" msgid "No such document \"%s\"." msgstr "No such document \"%s\"" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Homepage" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Help" + +#, fuzzy +msgid "Getting started" +msgstr "Settings saved." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "About" + +#, fuzzy +msgid "About this site" +msgstr "Unblock this user" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "F.A.Q." + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Contact" + +#, fuzzy +msgid "Contact info" +msgstr "Contact" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Tags" + +msgid "Using tags" +msgstr "" + +#. 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 "Groups" + +#, fuzzy +msgid "Using groups" +msgstr "User groups" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4381,49 +4457,6 @@ msgstr "" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Public tag cloud" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "These are most popular recent tags on %s " - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "" - -#. 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 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "API method not found." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5172,7 +5205,7 @@ msgid "FOAF for %s group" msgstr "FOAF for %s group" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5190,14 +5223,14 @@ msgstr "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." 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 " @@ -5325,11 +5358,6 @@ msgstr "" msgid "Subscribers" msgstr "Subscribers" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "All subscribers" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5421,11 +5449,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " @@ -5946,8 +5974,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6289,11 +6316,12 @@ msgid "License" msgstr "License" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public Licence as published by the Free " @@ -6301,11 +6329,12 @@ msgstr "" "any later version. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -6972,21 +7001,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() not implemented." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Homepage" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Homepage" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7817,14 +7836,6 @@ msgctxt "MENU" msgid "Public" msgstr "Public" -#. 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 "Groups" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8055,6 +8066,11 @@ msgstr "" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "This page is not available in a media type you accept" @@ -8457,6 +8473,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s joined group %2$s" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9246,23 +9266,6 @@ msgstr "Find content of notices" msgid "Find groups on this site" msgstr "Find groups on this site" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Help" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "About" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "F.A.Q." - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9286,19 +9289,6 @@ msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Contact" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Badge" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Untitled section" @@ -9631,16 +9621,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "You already repeated that notice." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Already repeated that notice." -msgstr[1] "Already repeated that notice." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Repeated to %s" +msgstr[1] "Repeated to %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index a978748c78..c69980f8a1 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:52+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -208,7 +209,6 @@ msgstr "Ne estas tiu paĝo." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -319,8 +319,6 @@ msgstr "Sendi inviton" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s kaj amikoj" @@ -1989,6 +1987,84 @@ msgstr "Aldoni al ŝatolisto" msgid "No such document \"%s\"." msgstr "Ne estas tia dokumento \"%s\"" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Hejmpaĝo" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Helpo" + +#, fuzzy +msgid "Getting started" +msgstr "Agordo konservitas." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "Enkonduko" + +#, fuzzy +msgid "About this site" +msgstr "Malbloki ĉi tiun uzanton" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "Oftaj demandoj" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Kontakto" + +#, fuzzy +msgid "Contact info" +msgstr "Kontakto" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Markiloj" + +msgid "Using tags" +msgstr "" + +#. 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 "Grupoj" + +#, fuzzy +msgid "Using groups" +msgstr "Uzantaj grupoj" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4338,48 +4414,6 @@ msgstr "" "blogging) servo surbaze de libera servila programo [StatusNet](http://status." "net/)." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Publika markil-nubo" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "Jen la plej popularaj entikedoj lastatempaj ĉe %s " - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Neniu jam afiŝis avizon kun [haketentikedon](%%doc.tags%%)." - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "Estu la unua afiŝanto!" - -#. 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 list " -"someone!" -msgstr "Kial ne [krei konton](%%action.register%%) kaj esti la unua afiŝanto!" - -#. TRANS: DT element on on page with public list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Listo ne ekzistas." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5129,7 +5163,7 @@ msgid "FOAF for %s group" msgstr "Foramiko de grupo %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5146,14 +5180,14 @@ msgstr "" "parto de tiu ĉi grupo kaj multe pli! ([Pli](%%doc.help%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** estas grupo de uzantoj ĉe %%%%*site.*name%%%%, [mikrobloga servo]" "(*http://estas.*wikipedia.*org/*wiki/*Microblogging) baze de ilaro de Libera " @@ -5278,11 +5312,6 @@ msgstr "" msgid "Subscribers" msgstr "Abonantoj" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Ĉiuj abonantoj" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5375,11 +5404,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** havas konton ĉe %%%%site.name%%%%, [mikrobloga](http://en.wikipedia." "org/wiki/Micro-blogging) servo surbaze de libera programaro [StatusNet]" @@ -5906,13 +5935,12 @@ msgstr "Jen homoj, kies avizoj %s rigardas." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Vi ne nun abonas ies ajn avizoj. Provu aboni konatojn. Provu [homserĉi](%%" "action.peoplesearch%%), kontrolu grupanojn en interesaj grupoj, kaj nian " @@ -6263,11 +6291,12 @@ msgid "License" msgstr "Licenco" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet estas libera molvaro: vi rajtas redistribui ĝin kaj/aŭ modifi ĝin " "sub la condiĉoj de la GNU-a Affero Ĝenerala Publika Licenco kiel eldonite de " @@ -6275,11 +6304,12 @@ msgstr "" "ĉiu posta versio taŭgas. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Ĉi tiu programo distribuiĝis kun espero ke ĝi estos utila, sed SEN AJNA " "GARANTIO; ne eĉ suba garantio de FUNKCIPOVO aŭ TAŬGECO POR IU CERTA CELO. " @@ -6947,21 +6977,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() ne jam realigita." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Hejmpaĝo" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Hejmpaĝo" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7799,14 +7819,6 @@ msgctxt "MENU" msgid "Public" msgstr "Publika" -#. 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 "Grupoj" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8036,6 +8048,11 @@ msgstr "" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "La paĝo estas ne havebla je la komunikil-tipo, kiun vi akceptas" @@ -8516,6 +8533,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s aliĝis vian grupon %2$s ĉe %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9309,23 +9330,6 @@ msgstr "Serĉi enhavon ĉe la retejo" msgid "Find groups on this site" msgstr "Serĉi grupon ĉe la retejo" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Helpo" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "Enkonduko" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "Oftaj demandoj" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9350,19 +9354,6 @@ msgctxt "MENU" msgid "Version" msgstr "Versio" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Kontakto" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Insigno" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sentitola sekcio" @@ -9704,16 +9695,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "La avizo jam ripetiĝis." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "La avizo jam ripetiĝis." -msgstr[1] "La avizo jam ripetiĝis." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Ripetita al %s" +msgstr[1] "Ripetita al %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 8dd1f0fb59..a917d8f062 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -24,17 +24,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:54+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -225,7 +226,6 @@ msgstr "No existe tal página." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -338,8 +338,6 @@ msgstr "Invitaciones" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s y sus amistades" @@ -1992,6 +1990,84 @@ msgstr "Agregar a favoritos" msgid "No such document \"%s\"." msgstr "No existe el documento «%s»." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Página de inicio" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Ayuda" + +#, fuzzy +msgid "Getting started" +msgstr "Se guardó configuración." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "Acerca de" + +#, fuzzy +msgid "About this site" +msgstr "Desbloquear este usuario" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "Preguntas Frecuentes" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Ponerse en contacto" + +#, fuzzy +msgid "Contact info" +msgstr "Ponerse en contacto" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Etiquetas" + +msgid "Using tags" +msgstr "" + +#. 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 "Grupos" + +#, fuzzy +msgid "Using groups" +msgstr "Grupos de usuario" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4046,6 +4122,9 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" +"Plugins adicionales se pueden activar y configurar de forma manual. Ver la " +"documentación en línea del " +"plugin para más detalles." #. TRANS: Admin form section header #, fuzzy @@ -4214,6 +4293,7 @@ msgstr "Pregúntame primero" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." msgstr "" +"Si otros usuarios necesitan su permiso para seguir sus actualizaciones." #. TRANS: Checkbox label in profile settings. msgid "Make updates visible only to my followers" @@ -4360,51 +4440,6 @@ msgstr "" "org/wiki/Microblogging) basada en la herramienta de software libre " "[StatusNet](http://status.net/) tool." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Nube de etiquetas pública" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -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 list cloud. -#. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format -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 list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "¡Sé la primera persona en publicar!" - -#. 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Método de API no encontrado." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -4904,6 +4939,8 @@ msgid "" "Feed has been restored. Your old posts should now appear in search and your " "profile page." msgstr "" +"Los feeds han sido restaurados. Sus mensajes deben aparecer ahora en la " +"búsqueda y la página de perfil." #. TRANS: Message when a feed restore is in progress. msgid "Feed will be restored. Please wait a few minutes for results." @@ -5167,7 +5204,7 @@ msgid "FOAF for %s group" msgstr "Amistades de amistades del grupo %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5186,14 +5223,14 @@ msgstr "" "información](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio de " "[microblogueo](http://es.wikipedia.org/wiki/Microblogging) basado en la " @@ -5323,11 +5360,6 @@ msgstr "Ver más" msgid "Subscribers" msgstr "Suscriptores" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Todos los suscriptores" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5422,11 +5454,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**% s ** tiene una cuenta en %%%%site.name%%%%, un servicio de [microblogueo]" "(http://en.wikipedia.org/wiki/Micro-blogging), basado en la herramienta de " @@ -5961,13 +5993,12 @@ msgstr "Estas son las personas que %s escucha sus avisos." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Ahora mismo no estás escuchando los avisos de nadie. Intenta suscribirte a " "gente que conozcas. Puedes [buscar gente](%%action.peoplesearch%%); busca " @@ -6143,7 +6174,7 @@ msgstr "Ninguno" #. TRANS: Default value for URL shortening settings. msgid "[internal]" -msgstr "" +msgstr "[Interno]" #. TRANS: Label for dropdown with URL shortener services. msgid "Shorten URLs with" @@ -6160,6 +6191,7 @@ msgstr "URL mas largo de" #. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." msgstr "" +"URLs más largo que esto será acostado, 0 significa que siempre se acortan." #. TRANS: Field label in URL settings in profile. msgid "Text longer than" @@ -6320,11 +6352,12 @@ msgid "License" msgstr "Licencia" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "Freecol es software libre: Puedes redistribuirlo y/o modificarlo bajo los " "términos de la Licencia Pública General de Affero AGPL tal y como se ha " @@ -6332,11 +6365,12 @@ msgstr "" "Licencia, o cualquier versión posterior (la de tu elección). " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Este programa se distribuye con la esperanza de que sea útil, pero SIN " "NINGUNA GARANTÍA, incluso sin la garantía implícita de COMERCIALIZACIÓN o " @@ -7022,21 +7056,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() no implementada." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Página de inicio" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Página de inicio" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7883,14 +7907,6 @@ msgctxt "MENU" msgid "Public" msgstr "Público" -#. 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 "Grupos" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8125,6 +8141,11 @@ msgstr "Ver más" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Esta página no está disponible en el tipo de medio que aceptas." @@ -8612,6 +8633,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s se unió al grupo %2$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9418,23 +9443,6 @@ msgstr "Buscar en el contenido de mensajes" msgid "Find groups on this site" msgstr "Encontrar grupos en este sitio" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Ayuda" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "Acerca de" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "Preguntas Frecuentes" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9459,19 +9467,6 @@ msgctxt "MENU" msgid "Version" msgstr "Versión" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Ponerse en contacto" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Insignia" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sección sin título" @@ -9812,16 +9807,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Ya has repetido este mensaje." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Este mensaje ya se ha repetido." -msgstr[1] "Este mensaje ya se ha repetido." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Repetido a %s" +msgstr[1] "Repetido a %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index 51d142b292..cf1997d45b 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: An13sa +# Author: Artsuaga # Author: Bengoa # Author: Txopi # -- @@ -11,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:56+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:11:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-core\n" @@ -98,9 +100,8 @@ msgid "Closed" msgstr "Itxita" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." -msgstr "Gorde atzipen-ezarpenak" +msgstr "Gorde atzipen-ezarpenak." #. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. @@ -212,7 +213,6 @@ msgstr "Orri hori ez dago." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -246,9 +246,9 @@ msgstr "%s(r)en etxeko denbora-lerroa" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Activity Streams JSON)" -msgstr "%s(r)en lagunen jarioa (Atom)" +msgstr "%s(r)en lagunen jarioa (Activity Streams JSON)" #. TRANS: %s is user nickname. #, php-format @@ -311,10 +311,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Bidali gonbidapenak." +msgstr "Bidali gonbidapena" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -324,8 +323,6 @@ msgstr "Bidali gonbidapenak." #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s eta lagunak" @@ -440,17 +437,15 @@ msgid "Unblock user failed." msgstr "Erabiltzailea desblokeatzeak huts egin du." #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "Elkarrizketa" +msgstr "Ez dago elkarrizketa IDrik." #. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). -#, fuzzy, php-format +#, php-format msgid "No conversation with ID %d." -msgstr "Elkarrizketa" +msgstr "Ez dago %d IDa duen elkarrizketarik." #. TRANS: Title for conversion timeline. -#, fuzzy msgctxt "TITLE" msgid "Conversation" msgstr "Elkarrizketa" @@ -1735,15 +1730,13 @@ msgstr "Elkarrizketa" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "%1$s(r)en ohar-jarioa (Atom)" +msgstr "Elkarrizketa jarioa (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "%1$s(r)en ohar-jarioa (RSS 2.0)" +msgstr "Elkarrizketa jarioa (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -1808,9 +1801,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Sartu \"%s\" zure kontua ezabatu nahi duzula baieztatzeko." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account." -msgstr "Zure kontua behin betiko ezabatu" +msgstr "Zure kontua behin betiko ezabatu." #. TRANS: Client error displayed trying to delete an application while not logged in. msgid "You must be logged in to delete an application." @@ -1967,6 +1959,74 @@ msgstr "Gehitu gogokoetara" msgid "No such document \"%s\"." msgstr "\"%s\" dokumentua ez dago." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Etxea" + +msgctxt "MENU" +msgid "Docs" +msgstr "Dokumentuak" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Laguntza" + +msgid "Getting started" +msgstr "Lehen urratsak" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Honi buruz" + +msgid "About this site" +msgstr "Gune honi buruz" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "Ohiko galderak" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Kontaktatu" + +msgid "Contact info" +msgstr "Kontaktatu" + +msgctxt "MENU" +msgid "Tags" +msgstr "Etiketak" + +msgid "Using tags" +msgstr "Etiketa erabiliak" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Taldeak" + +msgid "Using groups" +msgstr "Talde erabiliak" + +msgctxt "MENU" +msgid "API" +msgstr "API" + +msgid "RESTful API" +msgstr "RESTful API" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -2386,7 +2446,7 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" msgstr "" -"[Erregistratu](%%action.register%%) eta izan zaitez lehenbizikoa gogoko ohar " +"[Izena eman](%%action.register%%) eta izan zaitez lehenbizikoa gogoko ohar " "bat gehitzen!" #. TRANS: Title of RSS feed with favourite notices of a user. @@ -2674,8 +2734,8 @@ msgid "" "Why not [register an account](%%action.register%%) and [create the group](%%" "action.newgroup%%) yourself!" msgstr "" -"Zergatik ez duzu [kontu bat erregistratzen](%%action.register%%) eta [taldea " -"sortzen](%%action.newgroup%%) zerorrek!" +"Zergatik ez duzu [izen ematen](%%action.register%%) eta [taldea sortzen](%%" +"action.newgroup%%) zerorrek!" #. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. msgid "Only an admin can unblock group members." @@ -2697,13 +2757,13 @@ msgstr "BM ezarpenak" #. TRANS: Instant messaging settings page instructions. #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. #. TRANS: the order and formatting of link text and link should remain unchanged. -#, fuzzy, php-format +#, php-format msgid "" "You can send and receive notices through [instant messaging](%%doc.im%%). " "Configure your addresses and settings below." msgstr "" -"Berehalako mezularitzaren bidez bidal eta jaso ditzakezu oharrak [berehalako " -"mezuak](%%doc.im%%). Konfiguratu zure helbidea eta ezarpenak azpian." +"Oharrak bidal eta jaso ditzakezu [berehalako mezualaritza bidez](%%doc.im%" +"%). Konfiguratu zure helbidea eta ezarpenak azpian." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." @@ -2892,8 +2952,7 @@ msgid "" "on the site. Thanks for growing the community!" msgstr "" "Oharra bidaliko zaizu zure gonbidatuek gonbidapena onartzen dutenean eta " -"gunean erregistratzen direnean. Eskerrik asko komunitatea hazten " -"laguntzeagatik!" +"gunean izen ematen dutenean. Eskerrik asko komunitatea hazten laguntzeagatik!" #. TRANS: Form instructions. msgid "" @@ -3094,8 +3153,8 @@ msgstr "Hasi saioa zure erabiltzaile-izen eta pasahitzarekin." msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." msgstr "" -"Ez daukazu erabiltzailerik oraindik? [Erregistratu](%%action.register%%) " -"kontu berria." +"Ez daukazu erabiltzailerik oraindik? [Izena eman](%%action.register%%) kontu " +"berria sortzeko." #. TRANS: Client error displayed when trying to make another user admin on the Make Admin page while not an admin. msgid "Only an admin can make another user an admin." @@ -3248,8 +3307,8 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"Zergatik ez [kontu bat erregistratu](%%%%action.register%%%%) eta [gaiaren " -"inguruan idazten](%%%%action.newnotice%%%%?status_textarea=%s) lehena izan!" +"Zergatik ez [izena eman](%%%%action.register%%%%) eta [gaiaren inguruan " +"idazten](%%%%action.newnotice%%%%?status_textarea=%s) lehena izan!" #. TRANS: RSS notice search feed title. %s is the query. #, php-format @@ -3389,13 +3448,12 @@ msgid "Not a supported data format." msgstr "Onartzen ez den datu-formatua." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "BM ezarpenak" +msgstr "BM ezarpenak aintzinako eran" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "\"Aintzinako eran\" nahiago baduzu, hemen aukera dezakezu." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3403,13 +3461,13 @@ msgid "Settings saved." msgstr "Ezarpenak gordeak." msgid "Only stream mode (no conversations) in timelines" -msgstr "" +msgstr "Jario modua soilik (elkarrizketarik gabe)" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Erakutsi konbertsazio orria zuhaitz hierarkikoekin" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Erakutsi goitizena (ez izen osoak) jarioetan" #. TRANS: Button text to save a list. msgid "Save" @@ -3724,9 +3782,8 @@ msgid "Server to direct SSL requests to." msgstr "SSL eskariak bideratzeko zerbitzaria." #. TRANS: Button title text to store form data in the Paths admin panel. -#, fuzzy msgid "Save path settings." -msgstr "Gorde gunearen ezarpenak." +msgstr "Gorde helbide ezarpenak." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3853,7 +3910,7 @@ msgstr "Joan" #. 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-" @@ -3887,7 +3944,7 @@ msgstr "%1$s dagoen zerrendak, %2$d. orria" #. 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-" @@ -3895,7 +3952,7 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"Hauek **%s**(e)rako zerrendak dira. Zerrendekin antzeko jendea sailkatuko " +"Hauek **%s**(e)ren zerrendak dira. Zerrendekin antzeko jendea sailkatuko " "duzu %%site.name%% gunean, [StatusNet](http://status.net/) software librea " "darabilen [mikroblogintza-zerbitzuan](http://eu.wikipedia.org/wiki/" "Mikroblogintza). Zer egiten duten erraz jarraituko ahal izango duzu " @@ -3928,9 +3985,9 @@ msgstr "%s harpidetu den zerrendak" #. 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 "%s harpidetu den zerrendak, %2$d. orria" +msgstr "%1$s harpidetuta dagoen zerrendak, %2$d. orria" #. 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). @@ -4210,7 +4267,6 @@ msgid "Beyond the page limit (%s)." msgstr "Orriaren muga gainditua (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." msgstr "Ezin izan da korronte publikoa eskuratu." @@ -4226,24 +4282,20 @@ msgid "Public timeline" msgstr "Denbora-lerro publikoa" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Jario publikoa (Atom)" +msgstr "Korronte-jario Publikoa (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "Korronte-jario publikoa (RSS 1.0)" +msgstr "Korronte-jario Publikoa (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "Korronte-jario publikoa (RSS 2.0)" +msgstr "Korronte-jario Publikoa (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "Jario publikoa (Atom)" +msgstr "Korronte-jario Publikoa (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4291,47 +4343,6 @@ msgstr "" "oinarritutako [mikroblogging](http://eu.wikipedia.org/wiki/Mikroblogging) " "zerbitzu bat." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "Zerrenda publikoen hodeia" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Hauek dira zerrenda luzeenak %s(e)n" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Inork ez du beste inor [zerrendatu](%%doc.tags%%) oraindik." - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -msgid "Be the first to list someone!" -msgstr "Izan zaitez lehena norbait zerrendaratzen!" - -#. 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 list " -"someone!" -msgstr "" -"Zergatik ez [kontu bat erregistratu](%%action.register%%) eta lehenengoa " -"izan norbait zerrendatzen!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Zerrenden hodeia" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "Pertsona 1 zerrendatuta" -msgstr[1] "%d pertsona zerrendatuta" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4424,7 +4435,7 @@ msgstr "Ezizena edo posta-helbidea" #. TRANS: Title for field label on password recovery page. msgid "Your nickname on this server, or your registered email address." msgstr "" -"Zerbitzari honetan duzun ezizena, edo erregistratzeko erabilitako posta-" +"Zerbitzari honetan duzun ezizena, edo izen emateko erabilitako posta-" "helbidea." #. TRANS: Field label on password recovery page. @@ -4507,7 +4518,7 @@ msgstr "\"%d\" fitxategirik ez dago." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." -msgstr "Barkatu, gonbidatutako jendea soilik erregistra daiteke." +msgstr "Barkatu, gonbidatutako jendeak soilik izen eman dezake." #. TRANS: Client error displayed when trying to register to an invite-only site without a valid invitation. msgid "Sorry, invalid invitation code." @@ -4528,7 +4539,7 @@ msgstr "Erregistroa ez dago baimenduta." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. msgid "You cannot register if you do not agree to the license." -msgstr "Ezin duzu erregistratu lizentzia onartzen ez baduzu." +msgstr "Ezin duzu izenik eman lizentzia onartzen ez baduzu." #. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." @@ -4702,9 +4713,9 @@ msgstr "%1$s(e) ri erantzunak, %2$d. orria" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Replies feed for %s (Activity Streams JSON)" -msgstr "Erantzunen jarioa %s(r)entzat (Atom)" +msgstr "Erantzunen jarioa %s(r)entzat (Activity Streams JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4828,13 +4839,12 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Jarioa leheneratu egingo da. Itxaron minutu batzuk emaitzak jasotzeko." #. TRANS: Form instructions for feed restore. -#, fuzzy msgid "" "You can upload a backed-up timeline in Activity Streams format." msgstr "" "Activity Streams formatuan igo " -"dezakezu babeskopia egindako korrontea." +"dezakezu babeskopia egindako korronte bat." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. msgid "Upload the file" @@ -4948,26 +4958,23 @@ msgstr "Aplikazioaren informazioa" #. TRANS: Field label on application page. msgid "Consumer key" -msgstr "" +msgstr "Kontsumitzaile giltza" #. TRANS: Field label on application page. msgid "Consumer secret" -msgstr "" +msgstr "Kontsumitzaile sekretua" #. TRANS: Field label on application page. -#, fuzzy msgid "Request token URL" -msgstr "Token okerra." +msgstr "URL token eskaera" #. TRANS: Field label on application page. -#, fuzzy msgid "Access token URL" -msgstr "Atzipen-token okerra." +msgstr "Atzipen-token URLa" #. TRANS: Field label on application page. -#, fuzzy msgid "Authorize URL" -msgstr "Iturburu URLa" +msgstr "URLa baimendu" #. TRANS: Note on the OAuth application page about signature support. msgid "" @@ -4993,9 +5000,9 @@ msgid "Could not retrieve favorite notices." msgstr "Ezin izan dira gogoko oharrak eskuratu." #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "%s(r)en gogokoenen jarioa (Atom)" +msgstr "%s(r)en gogokoenen jarioa (Activity Streams JSON)" #. TRANS: Feed link text. %s is a username. #, php-format @@ -5040,9 +5047,9 @@ msgid "" "action.register%%%%) and then post something interesting they would add to " "their favorites :)" msgstr "" -"%s(e)k ez du oraindik gogoko oharrik gehitu. Zergatik ez [kontu bat " -"erregistratu](%%%%action.register%%%%) eta zerbait interesgarria idatzi bere " -"gogokoenetara gehitu dezan :)" +"%s(e)k ez du oraindik gogoko oharrik gehitu. Zergatik ez [izena eman](%%%%" +"action.register%%%%) eta zerbait interesgarria idatzi bere gogokoenetara " +"gehitu dezan :)" #. TRANS: Page notice for show favourites page. msgid "This is a way to share what you like." @@ -5060,9 +5067,9 @@ msgid "%1$s group, page %2$d" msgstr "%1$s taldea, %2$d orria" #. TRANS: Tooltip for feed link. %s is a group nickname. -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (Activity Streams JSON)" -msgstr "Oharren jarioa %s taldearentzat (Atom)" +msgstr "Oharren jarioa %s taldearentzat (Activity Streams JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5085,7 +5092,7 @@ msgid "FOAF for %s group" msgstr "FOAF %s taldearentzat" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5104,19 +5111,19 @@ msgstr "" "([Irakurri gehiago](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" -"**%s** [StatusNet](http://status.net/) software librean oinarritutako " -"[mikroblogintza](http://eu.wikipedia.org/wiki/Mikroblogintza) %%%%site.name%%" -"%% guneko erabiltzaile-talde bat da, Taldekideek mezu laburrak partekatzen " -"dituzte beren bizitza eta zaletasunen inguruan. " +"**%s** erabiltzaile-talde bat da %%%%site.name%%%% gunean, [StatusNet]" +"(http://status.net/) software librean oinarritutako [mikroblogintza](http://" +"eu.wikipedia.org/wiki/Mikroblogintza) zerbitzuan. Bere taldekideek mezu " +"laburrak partekatzen dituzte euren bizitza eta zaletasunen inguruan." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5210,7 +5217,7 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" -"Zergatik ez [erregistratu](%%%%action.register%%%%) eta denbora-lerro hau " +"Zergatik ez [izena eman](%%%%action.register%%%%) eta denbora-lerro hau " "jarraitzen hasi!" #. TRANS: Header on show list page. @@ -5239,11 +5246,6 @@ msgstr "Erakutsi dena" msgid "Subscribers" msgstr "Harpidetuak" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Harpidedun guztiak" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5270,27 +5272,27 @@ msgstr "%1$s(r)en ohar-jarioa %2$s etiketarekin (RSS 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (Activity Streams JSON)" -msgstr "%1$s(r)en ohar-jarioa (Atom)" +msgstr "%s(r)en ohar-jarioa (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 1.0)" -msgstr "%1$s(r)en ohar-jarioa (RSS 1.0)" +msgstr "%s(r)en ohar-jarioa (RSS 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 2.0)" -msgstr "%1$s(r)en ohar-jarioa (RSS 2.0)" +msgstr "%s(r)en ohar-jarioa (RSS 2.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (Atom)" -msgstr "%1$s(r)en ohar-jarioa (Atom)" +msgstr "%s(r)en ohar-jarioa (Atom)" #. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend. #. TRANS: More information at http://www.foaf-project.org. %s is a user nickname. @@ -5339,11 +5341,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s**(e)k kontu bat du %%%%site.name%%%%n, [StatusNet](http://status.net/) " "software librean oinarritutako [mikroblogging](http://eu.wikipedia.org/wiki/" @@ -5854,15 +5856,12 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Oraintxe bertan ez dituzu inoren oharrak jarraitzen, saiatu ezagutzen duzun " -"jendera harpidetzen. Probatu [jendearen bilaketa](%%action.peoplesearch%%), " -"zure intereseko taldeetako kideak begiratu eta baita gure [bereizitako " -"erabiltzaileak](%%action.featured%%). [Twitter erabiltzailea](%%action." -"twittersettings%%) bazara, bertan jarraitzen duzun jendera automatikoki " -"harpidetu zaitezke." +"jendera harpidetzen. Saiatu [jendea bilatzen](%%action.peoplesearch%%), " +"bilatu zure intereseko taldeetako kideak eta gure [erabiltzaile berezienak](%" +"%action.featured%%)." #. 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. @@ -5894,9 +5893,9 @@ msgstr "%1$s(r)ekin etiketatutako oharrak, %2$d. orria" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "%s etiketaren ohar-jarioa (Atom)" +msgstr "%s etiketaren ohar-jarioa (Activity Streams JSON)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. @@ -6176,7 +6175,7 @@ msgstr "StatusNet %s" #. TRANS: Content part of StatusNet version page. #. TRANS: %1$s is the engine name (StatusNet) and %2$s is the StatusNet version. -#, fuzzy, php-format +#, php-format msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2011 StatusNet, " "Inc. and contributors." @@ -6193,22 +6192,24 @@ msgid "License" msgstr "Lizentzia" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet software librea da: banatu edo aldatu dezakezu, Free Software " "Foundationak bezela, GNU Affero General Public License erabilita, baita " "lizentziaren 3 bertsiopean, edo (nahi baduzu) bertsio berriagoetan. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Programa hau erabilgarria izateko itxaropenarekin zabaldu da, baina INOLAKO " "BERMERIK GABE; iradokitako MERKATURATZE edo PROPOSAMEN JAKIN BATERAKO " @@ -6352,9 +6353,9 @@ msgid "Could not create login token for %s" msgstr "Ezin izan da saioa hasteko tokena sortu %s(e)rako" #. TRANS: Exception thrown when a program code class (%s) cannot be instantiated. -#, fuzzy, php-format +#, php-format msgid "Cannot instantiate class %s." -msgstr "Ezin da pasahitz berria gorde." +msgstr "%s klasea ezin da instantziatu." #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." @@ -6596,7 +6597,7 @@ msgstr "Ez dago posta-helbide edo erabiltzaile-izen hori duen erabiltzailerik." #. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. msgid "No registered email address for that user." -msgstr "Ez dago posta-helbiderik erregistratuta erabiltzaile horrentzako." +msgstr "Ez du inork izenik eman eposta helbide horrekin." #. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. msgid "Error saving address confirmation." @@ -6725,7 +6726,7 @@ msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #, php-format msgid "**%%site.name%%** is a microblogging service." -msgstr "**%%site.name%%**mikroblogintza-zerbitzu bat da." +msgstr "**%%site.name%%** mikroblogintza-zerbitzu bat da." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #. TRANS: Make sure there is no whitespace between "]" and "(". @@ -6764,17 +6765,17 @@ msgstr "" #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. #, php-format msgid "All %1$s content and data are available under the %2$s license." -msgstr "%1$s eduki eta datu guztiak %2$s lizentziaren arabera erabil daitezke." +msgstr "%1$s eduki eta datu guztiak %2$s lizentziapean erabil daitezke." #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. msgid "After" -msgstr "Ondoren" +msgstr "Ondorengoak" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. msgid "Before" -msgstr "Lehenago" +msgstr "Aurrekoak" #. TRANS: Client exception thrown when a feed instance is a DOMDocument. msgid "Expecting a root feed element but got a whole XML document." @@ -6872,19 +6873,10 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() ez dago inplementaturik." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Etxea" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Etxea" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7080,14 +7072,12 @@ msgstr "" "irakurri-idatzi" #. TRANS: Submit button title. -#, fuzzy msgid "Cancel application changes." -msgstr "Konektaturiko aplikazioak" +msgstr "Ezeztatu aplikazio aldaketak." #. TRANS: Submit button title. -#, fuzzy msgid "Save application changes." -msgstr "Aplikazio berria" +msgstr "Gorde aplikazio aldaketak." #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7096,7 +7086,7 @@ msgstr "Aplikazio ezezaguna" #. 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 "- " #. TRANS: Application access type msgid "read-write" @@ -7291,7 +7281,7 @@ msgstr[1] "%1$s %2$s gisa etiketatu da" #. TRANS: Separator for list of tags. #. TRANS: Separator in list of user names like "Jim, Bob, Mary". msgid ", " -msgstr "" +msgstr ", " #. TRANS: Error displayed if a given tag is invalid. #. TRANS: %s is the invalid tag. @@ -7700,13 +7690,6 @@ msgctxt "MENU" msgid "Public" msgstr "Publikoa" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Taldeak" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7737,9 +7720,8 @@ msgid "Disfavor favorite" msgstr "Gaitzetsi gogokoa" #. TRANS: Button title for removing the favourite status for a favourite notice. -#, fuzzy msgid "Remove this notice from your list of favorite notices." -msgstr "Ezin izan dira gogoko oharrak eskuratu." +msgstr "Ezabatu ohar hau zure gogoko oharretatik." #. TRANS: Form legend for adding the favourite status to a notice. msgid "Favor this notice" @@ -7751,9 +7733,8 @@ msgid "Favor" msgstr "Onetsi" #. TRANS: Button title for adding the favourite status to a notice. -#, fuzzy msgid "Add this notice to your list of favorite notices." -msgstr "Ezin izan dira gogoko oharrak eskuratu." +msgstr "Gehitu ohar hau zure gogoko oharren zerrendara." #. TRANS: Feed type name. msgid "RSS 1.0" @@ -7773,7 +7754,7 @@ msgstr "FOAF" #. TRANS: Feed type name. See http://activitystrea.ms/ msgid "Activity Streams" -msgstr "" +msgstr "Activity Streams" #. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." @@ -7815,12 +7796,10 @@ msgid "All members" msgstr "Kide guztiak" #. TRANS: Header for mini list of users with a pending membership request on a group page (h2). -#, fuzzy msgid "Pending" -msgstr "Erabakitzeke (%d)" +msgstr "Erabakitzeke" #. TRANS: Header for mini list of users that are blocked in a group page (h2). -#, fuzzy msgid "Blocked" msgstr "Blokeatuta" @@ -7837,7 +7816,7 @@ msgstr "Blokeatu" #. TRANS: Submit button title. msgctxt "TOOLTIP" msgid "Block this user so that they can no longer post messages to it." -msgstr "" +msgstr "Blokeatu erabiltzaile hau mezu gehiago bidali ez diezaioten." #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7927,13 +7906,17 @@ msgstr "Talde aktiboak" #. TRANS: Link description for seeing all groups. #. TRANS: Link description for seeing all lists. -#, fuzzy msgid "See all" msgstr "Erakutsi dena" #. TRANS: Link title for seeing all groups. msgid "See all groups you belong to." -msgstr "" +msgstr "Partaide zaren taldeak ikusi." + +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "Itzuli gora" #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" @@ -8068,15 +8051,14 @@ msgid "Leave" msgstr "Utzi" #. TRANS: Link title for seeing all lists. -#, fuzzy msgid "See all lists you have created." -msgstr "Erregistratu dituzun aplikazioak" +msgstr "Sortu dituzun zerrendak ikusi." #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Login" -msgstr "Izena eman" +msgstr "Saioa hasi" #. TRANS: Title for menu item for logging in to the StatusNet site. msgid "Login with a username and password" @@ -8398,6 +8380,10 @@ msgstr "" #. 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. +#, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s zure %2$s taldearekin elkartu da %3$s(e)n." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8460,7 +8446,7 @@ msgstr "Ezin izan da mezua analizatu." #. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user. msgid "Not a registered user." -msgstr "Erregistratu gabeko erabiltzailea." +msgstr "Izenik eman gabeko erabiltzailea." #. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address. msgid "Sorry, that is not your incoming email address." @@ -8486,10 +8472,9 @@ msgid "Make Admin" msgstr "Bihurtu administratzaile" #. TRANS: Submit button title. -#, fuzzy msgctxt "TOOLTIP" msgid "Make this user an admin." -msgstr "Bihurtu erabiltzaile hau administratzaile" +msgstr "Bihurtu erabiltzaile hau administratzaile." #. 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." @@ -8557,7 +8542,7 @@ msgstr "Mezuak" #. TRANS: Followed by notice source (usually the client used to send the notice). #. TRANS: Followed by notice source. msgid "from" -msgstr "nork" +msgstr "nondik" #. TRANS: A possible notice source (web interface). msgctxt "SOURCE" @@ -8606,7 +8591,7 @@ msgstr "adaptNoticeListItem() edo showNotice() implementatu beharko zenuke." #. TRANS: Link description to show more items in a list. msgid "More ▼" -msgstr "" +msgstr "Gehiago ▼" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." @@ -8655,7 +8640,7 @@ msgstr "" #. TRANS: Separator in profile addressees list. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Used in coordinates as abbreviation of north. msgid "N" @@ -8695,21 +8680,19 @@ msgid "Repeated by" msgstr "Errepikatzailea" msgid " " -msgstr "" +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. -#, fuzzy msgid "Reply to this notice." -msgstr "Erantzun ohar honi" +msgstr "Erantzun ohar honi." #. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Erantzun" #. TRANS: Link title in notice list item to delete a notice. -#, fuzzy msgid "Delete this notice from the timeline." -msgstr "Ezabatu ohar hau." +msgstr "Ezabatu ohar hau denboralerrotik." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8956,6 +8939,7 @@ msgctxt "plugin-description" msgid "" "(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" +"(Pluginaren deskribapena ez dago eskuragarri plugina desgaitzen denean.)" #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -8990,7 +8974,7 @@ msgstr "Saioa hasi gunean." #. TRANS: H2 text for user subscription statistics. msgid "Following" -msgstr "Jarraitzen" +msgstr "Jarraituak" #. TRANS: H2 text for user subscriber statistics. msgid "Followers" @@ -9006,7 +8990,7 @@ msgstr "Erabiltzaile IDa" #. TRANS: Label for user statistics. msgid "Member since" -msgstr "Partaidea noiztik" +msgstr "Izen emate data" #. TRANS: Label for user statistics. #. TRANS: Average count of posts made per day since account registration. @@ -9154,21 +9138,6 @@ msgstr "Bilatu oharren edukiak" msgid "Find groups on this site" msgstr "Bilatu taldeak gune honetan" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Laguntza" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Honi buruz" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9189,17 +9158,6 @@ msgctxt "MENU" msgid "Version" msgstr "Bertsioa" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Kontaktatu" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Txertatu" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Izenik gabeko atala" @@ -9283,11 +9241,11 @@ msgstr "Baimendutako konektatutako aplikazioak" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Aintzinako eran" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" -msgstr "" +msgstr "Erabiltzaile zaharrentzako interfaze doiketak" #. TRANS: Title of form to silence a user. msgctxt "TITLE" @@ -9409,7 +9367,7 @@ msgstr "Etiketaturiko pertsonen etiketa lainoa" #. TRANS: Content displayed in a tag cloud section if there are no tags. msgctxt "NOTAGS" msgid "None" -msgstr "Ezer ez" +msgstr "Bat ere ez" #. TRANS: Server exception displayed if a theme name was invalid. msgid "Invalid theme name." @@ -9523,16 +9481,26 @@ msgstr[1] "%%s(e)k hau atsegin dute." #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Ohar hau errepikatu duzu." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Pertsona batek ohar hau errepikatu du." -msgstr[1] "%d pertsonek ohar hau errepikatu dute." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "%%s eta %d gehiagok errepikatu dute hau." +msgstr[1] "%%s eta %d gehiagok errepikatu dute hau." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%%s(e)k hau errepikatu du." +msgstr[1] "%%s(e)k hau errepikatu dute." #. TRANS: Form legend. #, php-format @@ -9634,9 +9602,8 @@ msgid "Unsubscribe" msgstr "Kendu harpidetza" #. TRANS: Button title on unsubscribe form. -#, fuzzy msgid "Unsubscribe from this user." -msgstr "Kendu erabiltzaile honekiko harpidetza" +msgstr "Kendu erabiltzaile honekiko harpidetza." #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 7b6f701dfa..35a9b82b03 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:58+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -29,9 +29,10 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" -"X-POT-Import-Date: 2011-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -220,7 +221,6 @@ msgstr "چنین صفحه‌ای وجود ندارد." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -331,8 +331,6 @@ msgstr "دعوت‌نامه‌ها" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s و دوستان" @@ -2002,6 +2000,84 @@ msgstr "افزودن به برگزیده‌ها" msgid "No such document \"%s\"." msgstr "چنین پیوستی وجود ندارد." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "خانه" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "کمک" + +#, fuzzy +msgid "Getting started" +msgstr "تنظیمات ذخیره شد." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "دربارهٔ" + +#, fuzzy +msgid "About this site" +msgstr "آزاد سازی کاربر" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "سوال‌های رایج" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "تماس" + +#, fuzzy +msgid "Contact info" +msgstr "تماس" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "برچسب‌ها" + +msgid "Using tags" +msgstr "" + +#. 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 "گروه‌ها" + +#, fuzzy +msgid "Using groups" +msgstr "گروه‌های کاربر" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4389,49 +4465,6 @@ 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 list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "ابر برچسب عمومی" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "این‌ها محبوب‌ترین برچسب‌های اخیر روی %s هستند " - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "هیچ‌کس هنوز پیامی با یک [برچسب](%%doc.tags%%) نفرستاده است." - -#. 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 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 list " -"someone!" -msgstr "" -"چرا به [باز کردن یک حساب](%%action.register%%) اقدام نمی‌کنید و اولین نفری " -"باشید که چیزی می‌فرستد!" - -#. TRANS: DT element on on page with public list cloud. -#, fuzzy -msgid "List cloud" -msgstr "رابط مورد نظر پیدا نشد." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5189,7 +5222,7 @@ msgid "FOAF for %s group" msgstr "FOAF برای گروه %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5208,14 +5241,14 @@ msgstr "" "گروه و بلکه بیش‌تر بشوید! ([بیش‌تر بخوانید](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." 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%" @@ -5343,11 +5376,6 @@ msgstr "" msgid "Subscribers" msgstr "مشترک‌ها" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "تمام مشترک‌ها" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5442,11 +5470,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." 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%DB%" @@ -5978,13 +6006,12 @@ msgstr "این‌ها کسانی هستند که %s پیام‌هایشان را #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "شما در حال حاضر پیام‌های هیچ‌کس را دنبال نمی‌کنید، تلاش کنید که مشترک افرادی که " "می‌شناسید شوید. [جست‌وجوی افراد](%%action.peoplesearch%%) را امتحان کنید، " @@ -6336,22 +6363,24 @@ msgid "License" msgstr "مجوز" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet یک نرم‌افزار آزاد است: شما می‌توانید آن را بازتوزیع کنید و/یا آن را " "تحت شرایط مجوز GNU Affero General Public License نسخهٔ ۳، یا (به انتخاب شما) " "هر نسخهٔ بعدی دیگری، که توسط بنیاد نرم‌افزارهای آزاد منتشر شده است، ویرایش کنید" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "این برنامه به امید این‌که سودمند خواهد بود، توزیع شده است، اما بدون ضمانت؛ " "حتی بدون ضمانت جزئی دارای کیفیت فروش یا مناسب بودن برای هدفی خاص. برای " @@ -7026,21 +7055,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() پیاده نشده است." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "خانه" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "خانه" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7881,14 +7900,6 @@ msgctxt "MENU" msgid "Public" msgstr "عمومی" -#. 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 "گروه‌ها" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8118,6 +8129,11 @@ msgstr "" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "این صفحه در نوع رسانه‌ای که پذیرفته‌اید، در دسترس نیست." @@ -8601,6 +8617,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s به گروه %2$s پیوست." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9394,23 +9414,6 @@ msgstr "پیدا کردن محتوای پیام‌ها" msgid "Find groups on this site" msgstr "پیدا کردن گروه‌ها در این وب‌گاه" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "کمک" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "دربارهٔ" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "سوال‌های رایج" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9435,19 +9438,6 @@ msgctxt "MENU" msgid "Version" msgstr "نسخه" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "تماس" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "نشان" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "بخش بی‌نام" @@ -9781,15 +9771,24 @@ msgstr[0] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "شما قبلا آن پیام را تکرار کرده‌اید." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "قبلا آن پیام تکرار شده است." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "تکرار شده به %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 6aa35683f7..f027179678 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,17 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:00+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, fuzzy, php-format @@ -219,7 +220,6 @@ msgstr "Sivua ei ole." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -331,8 +331,6 @@ msgstr "Kutsu(t) lähetettiin" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s ja kaverit" @@ -1974,6 +1972,82 @@ msgstr "Lisää suosikkeihin" msgid "No such document \"%s\"." msgstr "Dokumenttia ”%s” ei ole." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Koti" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Ohje" + +#, fuzzy +msgid "Getting started" +msgstr "Asetukset tallennettu." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "Tietoa" + +#, fuzzy +msgid "About this site" +msgstr "Poista esto tältä käyttäjältä" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "UKK" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Ota yhteyttä" + +#, fuzzy +msgid "Contact info" +msgstr "Ota yhteyttä" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Tagit" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Ryhmät" + +#, fuzzy +msgid "Using groups" +msgstr "Käyttäjäryhmät" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3875,10 +3949,9 @@ msgstr "Tuota tagia ei ole." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" -msgstr "Mene" +msgstr "Siirry" #. 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). @@ -4319,52 +4392,6 @@ msgstr "" "Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" "blogging)palvelu " -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Julkinen tagipilvi" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa" - -#. 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 [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 list cloud for logged in users. -#, fuzzy -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 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "API-metodia ei löytynyt." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5118,7 +5145,7 @@ msgid "FOAF for %s group" msgstr "Käyttäjän %s lähetetyt viestit" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5131,14 +5158,14 @@ msgid "" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" @@ -5266,11 +5293,6 @@ msgstr "Näytä kaikki" msgid "Subscribers" msgstr "Tilaajat" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Kaikki tilaajat" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5364,7 +5386,7 @@ msgstr "" msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " "[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" @@ -5884,8 +5906,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6242,7 +6263,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6250,7 +6271,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6916,19 +6937,10 @@ msgid "saveSettings() not implemented." msgstr "Komentoa saveSettings() ei ole toteutettu." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Koti" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Koti" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7770,13 +7782,6 @@ msgctxt "MENU" msgid "Public" msgstr "Julkinen" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Ryhmät" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8006,6 +8011,11 @@ msgstr "Näytä kaikki" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Tämä sivu ei ole saatavilla sinulle sopivassa mediatyypissä." @@ -8407,6 +8417,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%s liittyi ryhmään %s" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9181,23 +9195,6 @@ msgstr "Hae päivityksien sisällöstä" msgid "Find groups on this site" msgstr "Etsi ryhmiä tästä palvelusta" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Ohje" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "Tietoa" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "UKK" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9221,19 +9218,6 @@ msgctxt "MENU" msgid "Version" msgstr "Omat" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Ota yhteyttä" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Tönäise" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Nimetön osa" @@ -9567,16 +9551,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Sinä kuulut jo tähän ryhmään." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Tätä päivitystä ei voi poistaa." -msgstr[1] "Tätä päivitystä ei voi poistaa." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Toistettu käyttäjälle %s" +msgstr[1] "Toistettu käyttäjälle %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index c161ad65dc..917f530741 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -20,6 +20,7 @@ # Author: Patcito # Author: Peter17 # Author: Sherbrooke +# Author: Valeryan 24 # Author: Verdy p # Author: Y-M D # -- @@ -29,17 +30,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:02+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -115,7 +117,6 @@ msgid "Closed" msgstr "Fermé" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." msgstr "Sauvegarder les paramètres d’accès" @@ -231,7 +232,6 @@ msgstr "Page non trouvée." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -253,22 +253,21 @@ msgid "No such user." msgstr "Utilisateur non trouvé." #. TRANS: Title of a user's own start page. -#, fuzzy msgid "Home timeline" -msgstr "Activité de %s" +msgstr "Accueil - Fil" #. TRANS: Title of another user's start page. #. TRANS: %s is the other user's name. -#, fuzzy, php-format +#, php-format msgid "%s's home timeline" -msgstr "Activité de %s" +msgstr "Fil d'activité de %s" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Activity Streams JSON)" -msgstr "Flux pour les amis de %s (Atom)" +msgstr "Flux pour les amis de %s (flux d'activités JSON)" #. TRANS: %s is user nickname. #, php-format @@ -344,8 +343,6 @@ msgstr "Envoyer des invitations" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s et ses amis" @@ -1447,9 +1444,9 @@ msgstr "Impossible de supprimer l’abonnement à soi-même." #. TRANS: Subtitle for Atom subscription feed. #. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "People %1$s has subscribed to on %2$s" -msgstr "Abonnés de %s" +msgstr "%1$s s'est abonné à %2$s" #. TRANS: Client error displayed when not using the follow verb. #, fuzzy @@ -1794,7 +1791,6 @@ msgstr "Flux des avis de %s (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#, fuzzy msgctxt "TITLE" msgid "Notice" msgstr "Avis" @@ -2018,6 +2014,81 @@ msgstr "Ajouter aux favoris" msgid "No such document \"%s\"." msgstr "Document « %s » non trouvé." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Site personnel" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Aide" + +#, fuzzy +msgid "Getting started" +msgstr "Préférences enregistrées." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "À propos" + +#, fuzzy +msgid "About this site" +msgstr "Débloquer cet utilisateur" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Contact" + +#, fuzzy +msgid "Contact info" +msgstr "Contact" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Balises" + +msgid "Using tags" +msgstr "" + +#. 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 "Groupes" + +#, fuzzy +msgid "Using groups" +msgstr "Groupes d’utilisateurs" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3884,7 +3955,7 @@ msgstr "Modifier le groupe %s" #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Listes de %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. @@ -4307,24 +4378,20 @@ msgid "Public timeline" msgstr "Flux public" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Fil du flux public (Atom)" +msgstr "Flux public (Atom)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "Fil du flux public (RSS 1.0)" +msgstr "Flux public (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "Fil du flux public (RSS 2.0)" +msgstr "Flux public (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "Fil du flux public (Atom)" +msgstr "Flux public (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4373,50 +4440,6 @@ 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 list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Nuage de marques public" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -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 list cloud. -#. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format -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 list cloud for logged in users. -msgid "Be the first to list someone!" -msgstr "Soyez le premier sur la liste quelqu’un !" - -#. 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Page non trouvée." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "1 personne listée" -msgstr[1] "%d personnes listées" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5173,7 +5196,7 @@ msgid "FOAF for %s group" msgstr "ami d’un ami pour le groupe %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5192,14 +5215,14 @@ msgstr "" "lire plus](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** est un groupe d’utilisateurs sur %%%%site.name%%%%, un service de " "[micro-blogging](http://fr.wikipedia.org/wiki/Microblog) basé sur le " @@ -5330,11 +5353,6 @@ msgstr "Tout afficher" msgid "Subscribers" msgstr "Abonnés" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Tous les abonnés" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5430,11 +5448,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** est inscrit à %%%%site.name%%%%, service de [microblogging](http://fr." "wikipedia.org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://" @@ -5962,13 +5980,12 @@ msgstr "Les avis de ces personnes sont suivis par %s." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Vous ne suivez les avis de personne pour le moment, essayez de vous abonnez " "à des gens que vous connaissez. Essayez la [recherche de personnes](%%action." @@ -6320,11 +6337,12 @@ msgid "License" msgstr "Licence" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet est un logiciel libre : vous pouvez le redistribuer et/ou le " "modifier en respectant les termes de la licence Licence Publique Générale " @@ -6332,11 +6350,12 @@ msgstr "" "sa version 3 ou (comme vous le souhaitez) toute version plus récente. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Ce programme est distribué dans l’espoir qu’il sera utile, mais SANS AUCUNE " "GARANTIE ; sans même la garantie implicite de COMMERCIALISATION ou " @@ -7011,21 +7030,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() n’a pas été implémentée." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Site personnel" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Site personnel" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7870,14 +7879,6 @@ msgctxt "MENU" msgid "Public" msgstr "Public" -#. 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 "Groupes" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8113,6 +8114,11 @@ msgstr "Voir davantage" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "" @@ -8353,9 +8359,9 @@ msgstr "" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Profile: %s" -msgstr "Profil" +msgstr "Profil : %s" #. TRANS: Profile info line in notification e-mail. #. TRANS: %s is biographical information. @@ -8365,7 +8371,7 @@ msgstr "Bio : %s" #. TRANS: This is a paragraph in a new-subscriber e-mail. #. TRANS: %s is a URL where the subscriber can be reported as abusive. -#, fuzzy, php-format +#, php-format msgid "" "If you believe this account is being used abusively, you can block them from " "your subscribers list and report as spam to site administrators at %s." @@ -8600,6 +8606,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s a rejoint le groupe %2$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8782,12 +8792,12 @@ msgstr "Courriel" #. TRANS: A possible notice source (OpenMicroBlogging). msgctxt "SOURCE" msgid "omb" -msgstr "" +msgstr "OMB" #. TRANS: A possible notice source (Application Programming Interface). msgctxt "SOURCE" msgid "api" -msgstr "" +msgstr "API" #. TRANS: Client exception thrown when no author for an activity was found. msgid "Cannot get author for activity." @@ -8813,7 +8823,7 @@ msgstr "" #. TRANS: Link description to show more items in a list. msgid "More ▼" -msgstr "" +msgstr "Plus" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." @@ -8949,10 +8959,9 @@ msgid "No oEmbed API endpoint available." msgstr "La messagerie instantanée n’est pas disponible." #. TRANS: Field label for list. -#, fuzzy msgctxt "LABEL" msgid "List" -msgstr "Liens" +msgstr "Liste" #. TRANS: Field title for list. #, fuzzy @@ -8984,7 +8993,6 @@ msgid "Add or remove people" msgstr "Ajouter ou supprimer des personnes" #. TRANS: Header in list edit form. -#, fuzzy msgctxt "HEADER" msgid "Search" msgstr "Rechercher" @@ -9078,7 +9086,7 @@ msgstr "Mises à jour avec « %s »" #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Listes de %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. @@ -9106,9 +9114,8 @@ msgid "Tags" msgstr "Balises" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "Avis populaires" +msgstr "Listes populaires" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. @@ -9149,7 +9156,6 @@ msgid "Replies" msgstr "Réponses" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Favorites" msgstr "Favoris" @@ -9189,10 +9195,9 @@ msgid "" msgstr "" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "Paramètres SMS" +msgstr "Paramètres" #. TRANS: Menu item title in primary navigation panel. #, fuzzy @@ -9285,15 +9290,14 @@ msgid "Featured" msgstr "En vedette" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" -msgstr "Populaires" +msgstr "Populaire" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trending topics" -msgstr "" +msgstr "Tendances" #. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." @@ -9374,7 +9378,6 @@ msgid "Find people on this site" msgstr "Chercher des personnes sur ce site" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Notices" msgstr "Avis" @@ -9387,21 +9390,6 @@ msgstr "Chercher dans le contenu des avis" msgid "Find groups on this site" msgstr "Rechercher des groupes sur ce site" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Aide" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "À propos" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9422,18 +9410,6 @@ msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Contact" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Insigne" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Section sans titre" @@ -9630,7 +9606,6 @@ msgstr "S’abonner à cet utilisateur" #. TRANS: Button text to subscribe to a user. #. TRANS: Button text for subscribing to a list. -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" msgstr "S’abonner" @@ -9771,16 +9746,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Vous avez déjà repris cet avis." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Vous avez déjà repris cet avis." -msgstr[1] "Vous avez déjà repris cet avis." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Repris pour %s" +msgstr[1] "Repris pour %s" #. TRANS: Form legend. #, fuzzy, php-format @@ -9881,13 +9866,11 @@ msgstr "Ne plus suivre cet utilisateur" #. TRANS: Button text on unsubscribe form. #. TRANS: Button text for unsubscribing from a list. -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "Désabonnement" +msgstr "Se désabonner" #. TRANS: Button title on unsubscribe form. -#, fuzzy msgid "Unsubscribe from this user." msgstr "Ne plus suivre cet utilisateur" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 8bb26a37a3..1f1d0b8c00 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:04+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:11:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" @@ -93,9 +94,8 @@ msgid "Closed" msgstr "Sierât" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." -msgstr "Salve lis impuestazions di acès" +msgstr "Salve lis impuestazions di acès." #. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. @@ -205,7 +205,6 @@ msgstr "La pagjine no esist." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -316,8 +315,6 @@ msgstr "Invide" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amîs" @@ -426,17 +423,15 @@ msgid "Unblock user failed." msgstr "" #. TRANS: Client exception thrown when no conversation ID is given. -#, fuzzy msgid "No conversation ID." -msgstr "nissun id de tabaiade" +msgstr "Nissun ID de tabaiade." #. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). -#, fuzzy, php-format +#, php-format msgid "No conversation with ID %d." -msgstr "nissun id de tabaiade" +msgstr "Nissune conversazion cun ID %d." #. TRANS: Title for conversion timeline. -#, fuzzy msgctxt "TITLE" msgid "Conversation" msgstr "Tabaiade" @@ -1045,7 +1040,7 @@ msgstr "%1$s inzornaments preferîts di %2$s / %3$s." #. TRANS: %s is the error message. #, php-format msgid "Could not generate feed for list - %s" -msgstr "" +msgstr "No si à podût gjenerâ il canâl pe liste - %s" #. TRANS: Title for timeline of most recent mentions of a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname. @@ -1116,7 +1111,7 @@ msgstr "Inzornaments etichetâts cun %1$s su %2$s!" #. TRANS: Client error displayed trying to add a notice to another user's timeline. msgid "Only the user can add to their own timeline." -msgstr "" +msgstr "Dome l'utent al pues zontâ alc ae sô ativitât." #. TRANS: Client error displayed when using another format than AtomPub. msgid "Only accept AtomPub for Atom feeds." @@ -1708,15 +1703,13 @@ msgstr "Tabaiade" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Canâl dai avîs par %s (Activity Streams JSON)" +msgstr "Canâl des tabaiadis (flus di ativitât JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Canâl dai avîs par %s (RSS 2.0)" +msgstr "Canâl des tabaiadis (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -1779,9 +1772,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Inserìs \"%s\" par confermâ che tu vuelis eliminâ la tô identitât." #. TRANS: Button title for user account deletion. -#, fuzzy msgid "Permanently delete your account." -msgstr "Elimine par simpri la tô identitât" +msgstr "Elimine par simpri la tô identitât." #. TRANS: Client error displayed trying to delete an application while not logged in. msgid "You must be logged in to delete an application." @@ -1932,6 +1924,79 @@ msgstr "Zonte ai preferîts" msgid "No such document \"%s\"." msgstr "" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Inizi" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Jutori" + +#, fuzzy +msgid "Getting started" +msgstr "Impuestazions salvadis." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Informazions" + +#, fuzzy +msgid "About this site" +msgstr "Disbloche chest utent" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "Domandis plui frecuentis" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Contats" + +#, fuzzy +msgid "Contact info" +msgstr "Contats" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Etichetis" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Grups" + +#, fuzzy +msgid "Using groups" +msgstr "Grups di utents" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -1982,7 +2047,7 @@ msgstr "La URL sorzint no je valide." #. TRANS: Validation error shown when not providing an organisation in the "Edit application" form. #. TRANS: Validation error shown when not providing an organisation in the "New application" form. msgid "Organization is required." -msgstr "" +msgstr "E covente une organizazion." #. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form. msgid "Organization is too long (maximum 255 characters)." @@ -2379,7 +2444,7 @@ msgstr "" #. TRANS: Client error displayed when an invalid notice ID was given trying do display a file. msgid "No notice." -msgstr "" +msgstr "Nissun avîs." #. TRANS: Client error displayed when trying do display a file for a notice without a file attachement. msgid "No attachments." @@ -2472,7 +2537,7 @@ msgstr "" #. TRANS: Client error displayed trying to perform an action without providing an ID. #. TRANS: Client error displayed trying to find a user by ID without providing an ID. msgid "No ID." -msgstr "" +msgstr "Nissun ID." #. TRANS: Title for group logo settings page. #. TRANS: Group logo form legend. @@ -2570,8 +2635,8 @@ msgid "" "for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%" "%%%)!" msgstr "" -"I grups di %%%%site.name%%%% ti permetin cjatâ e tabaiâ cun int che e à " -"interès simîi. Daspò che tu ti unissis a un grup tu puedis mandâ messaçs a " +"I grups di %%%%site.name%%%% ti permetin di cjatâ e tabaiâ cun int che e à " +"interès simii. Daspò che tu ti unissis a un grup tu puedis mandâ messaçs a " "ducj chei altris membris dal grup doprant la scurte \"!groupname\". No son " "grups che ti plasin? Prove a [cirint un](%%%%action.groupsearch%%%%) o " "[scomence il to](%%%%action.newgroup%%%%)!" @@ -2642,13 +2707,13 @@ msgstr "Impuestazions IM" #. TRANS: Instant messaging settings page instructions. #. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. #. TRANS: the order and formatting of link text and link should remain unchanged. -#, fuzzy, php-format +#, php-format msgid "" "You can send and receive notices through [instant messaging](%%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." +"Configure ca sot lis tôs direzions e lis impuestazions." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." @@ -2844,7 +2909,7 @@ msgstr "Dopre chest modul par invidâ amîs e coleghis a doprâ il servizi." #. TRANS: the StatusNet sitename. #, php-format msgid "%1$s has invited you to join them on %2$s" -msgstr "" +msgstr "%1$s ti à invidât a iscriviti su %2$s" #. TRANS: Client error displayed when trying to join a group while not logged in. msgid "You must be logged in to join a group." @@ -3314,13 +3379,13 @@ msgid "Not a supported data format." msgstr "" #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "Impuestazions IM" +msgstr "Impuestazions pe viere muse" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." msgstr "" +"Se ti plaseve di plui la grafiche di une volte, tu puedis configurâle culì." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3649,9 +3714,8 @@ msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -#, fuzzy msgid "Save path settings." -msgstr "Salve lis impuestazions dal sît." +msgstr "Salve lis impuestazions dal percors." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3778,7 +3842,7 @@ msgstr "Va" #. 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-" @@ -3812,7 +3876,7 @@ msgstr "Listis che a contegnin %1$s, pagjine %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-" @@ -3824,7 +3888,7 @@ msgstr "" "ordin personis similis su %%site.name%%, un servizi di [microblogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) basât sul imprest libar " "[StatusNet](http://status.net/). Tu puedis tignî di voli ce che a stan " -"fasint sotscrivinti ae ativitât de etichete." +"fasint sotscrivinti ae ativitât de liste." #. 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). @@ -4049,6 +4113,8 @@ msgstr "In ce fûs orari ti cjatistu par solit?" msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" +"Sotscrîf in automatic a ducj chei che si sotscrivin a mi (ideâl par non " +"umans)." #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. msgid "Subscription policy" @@ -4064,11 +4130,11 @@ msgstr "Domandimi prime" #. TRANS: Dropdown field title on group edit form. msgid "Whether other users need your permission to follow your updates." -msgstr "" +msgstr "Se i altris utents a àn di vê il permès par seguî i tiei inzornaments." #. TRANS: Checkbox label in profile settings. msgid "Make updates visible only to my followers" -msgstr "" +msgstr "Mostre i inzornaments dome a chei che mi seguissin" #. TRANS: Validation error in form for profile settings. #. TRANS: Plural form is used based on the maximum number of allowed @@ -4125,9 +4191,8 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." -msgstr "No si à podût creâ il preferît." +msgstr "No si à podût recuperâ la ativitât publiche." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4141,22 +4206,18 @@ msgid "Public timeline" msgstr "Ativitât publiche" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Canâl de ativitât publiche (Activity Streams JSON)" +msgstr "Canâl de ativitât publiche (flus di ativitât JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" msgstr "Canâl de ativitât publiche (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" msgstr "Canâl de ativitât publiche (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" msgstr "Canâl de ativitât publiche (Atom)" @@ -4169,7 +4230,7 @@ msgstr "" #. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user. msgid "Be the first to post!" -msgstr "Publiche alc par prin !" +msgstr "Publiche alc par prin!" #. TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user. #, php-format @@ -4203,47 +4264,6 @@ msgstr "" "org/wiki/Micro-blogging) basât sul imprest libar [StatusNet](http://status." "net/)." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "Nûl des listis publichis" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Chestis a son lis listis plui popolârs su %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Nissun nol à ancjemò metût altris in [listis](%%%%doc.tags%%%%)." - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -msgid "Be the first to list someone!" -msgstr "Met cualchidun in liste par prin!" - -#. 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 list " -"someone!" -msgstr "" -"Parcè no [tu regjistris une identitât](%%%%action.register%%%%) e tu metis " -"cualchidun in liste par prin!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Nûl des listis" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "1 persone in liste" -msgstr[1] "%d personis in liste" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4269,7 +4289,7 @@ msgstr "" #. 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. msgid "Be the first to post one!" -msgstr "" +msgstr "Publiche alc par prin!" #. TRANS: Message shown to a anonymous user for the public tag cloud #. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag. @@ -4798,7 +4818,7 @@ msgstr "" #. TRANS: Header on the OAuth application page. msgid "Application profile" -msgstr "" +msgstr "Profîl de aplicazion" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", @@ -4954,7 +4974,7 @@ msgid "FOAF for %s group" msgstr "FOAF pal grup %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -4973,14 +4993,14 @@ msgstr "" "help%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** al è un grup di utents su %%site.name%%, un servizi di [microblogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) basât sul imprest libar " @@ -5107,11 +5127,6 @@ msgstr "Mostre dut" msgid "Subscribers" msgstr "Sotscritôrs" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Ducj i sotscritôrs" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5205,11 +5220,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** al à une identitât su %%site.name%%, un servizi di [microblogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) basât sul imprest libar " @@ -5706,13 +5721,12 @@ msgstr "Chestis a son lis personis che %s al seguìs." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "No tu stâs seguint i avîs di nissun par cumò, prove a sotscrivi cualchidun " "che tu cognossis. Prove a [cirî int](%%action.peoplesearch%%), cjalâ i " @@ -5961,7 +5975,7 @@ msgstr "Gnûfs utents" #. TRANS: Field label in user admin panel for setting new user welcome text. msgid "New user welcome" -msgstr "" +msgstr "Benvignût pai gnûfs utents" #. TRANS: Tooltip in user admin panel for setting new user welcome text. msgid "Welcome text for new users (maximum 255 characters)." @@ -6029,12 +6043,12 @@ msgstr "StatusNet %s" #. TRANS: Content part of StatusNet version page. #. TRANS: %1$s is the engine name (StatusNet) and %2$s is the StatusNet version. -#, fuzzy, php-format +#, php-format msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2011 StatusNet, " "Inc. and contributors." msgstr "" -"Chest sît al funzione graziis a %1$s version %2$s, Copyright 2008-2010 " +"Chest sît al funzione graziis a %1$s version %2$s, Copyright 2008-2011 " "StatusNet, Inc. e i colaboradôrs." #. TRANS: Header for StatusNet contributors section on the version page. @@ -6046,11 +6060,12 @@ msgid "License" msgstr "Licence" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet al è software libar: tu puedis tornâ a distribuîlu e/o modificâlu " "sot dai tiermins de GNU Affero General Public License come che e je " @@ -6062,7 +6077,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6196,9 +6211,9 @@ msgid "Could not create login token for %s" msgstr "" #. TRANS: Exception thrown when a program code class (%s) cannot be instantiated. -#, fuzzy, php-format +#, php-format msgid "Cannot instantiate class %s." -msgstr "No si pues istanziâ la clas" +msgstr "No si pues istanziâ la clas %s." #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." @@ -6702,19 +6717,10 @@ msgid "saveSettings() not implemented." msgstr "" #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Inizi" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Inizi" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -6883,7 +6889,7 @@ msgstr "" #. TRANS: Radio button label for application type msgid "Browser" -msgstr "" +msgstr "Sgarfadôr" #. TRANS: Radio button label for application type msgid "Desktop" @@ -6895,7 +6901,7 @@ msgstr "" #. TRANS: Radio button label for access type. msgid "Read-only" -msgstr "Dome in scriture" +msgstr "Dome in leture" #. TRANS: Radio button label for access type. msgid "Read-write" @@ -6906,14 +6912,12 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -#, fuzzy msgid "Cancel application changes." -msgstr "Aplicazions conetudis" +msgstr "Anule i cambiaments ae aplicazion." #. TRANS: Submit button title. -#, fuzzy msgid "Save application changes." -msgstr "Gnove aplicazion" +msgstr "Salve i cambiaments ae aplicazion." #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -6926,16 +6930,16 @@ msgstr " di " #. TRANS: Application access type msgid "read-write" -msgstr "" +msgstr "in leture e scriture" #. TRANS: Application access type msgid "read-only" -msgstr "" +msgstr "dome in leture" #. 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 "Aprovât %1$s - acès \"%2$s\"." #. TRANS: Access token in the application list. #. TRANS: %s are the first 7 characters of the access token. @@ -7526,13 +7530,6 @@ msgctxt "MENU" msgid "Public" msgstr "Public" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Grups" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7564,7 +7561,7 @@ msgstr "Gjave dai preferîts" #. TRANS: Button title for removing the favourite status for a favourite notice. msgid "Remove this notice from your list of favorite notices." -msgstr "" +msgstr "Gjave chest avîs de tô liste dai avîs preferîts." #. TRANS: Form legend for adding the favourite status to a notice. msgid "Favor this notice" @@ -7577,7 +7574,7 @@ msgstr "Preferìs" #. TRANS: Button title for adding the favourite status to a notice. msgid "Add this notice to your list of favorite notices." -msgstr "" +msgstr "Zonte chest avîs ae tô liste dai avîs preferîts." #. TRANS: Feed type name. msgid "RSS 1.0" @@ -7597,7 +7594,7 @@ msgstr "FOAF" #. TRANS: Feed type name. See http://activitystrea.ms/ msgid "Activity Streams" -msgstr "" +msgstr "Flus di ativitâts" #. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." @@ -7639,12 +7636,10 @@ msgid "All members" msgstr "Ducj i membris" #. TRANS: Header for mini list of users with a pending membership request on a group page (h2). -#, fuzzy msgid "Pending" -msgstr "In spiete (%d)" +msgstr "In spiete" #. TRANS: Header for mini list of users that are blocked in a group page (h2). -#, fuzzy msgid "Blocked" msgstr "Blocâts" @@ -7750,6 +7745,11 @@ msgstr "Viôt dut" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "" @@ -7879,9 +7879,8 @@ msgid "Leave" msgstr "Lasse" #. TRANS: Link title for seeing all lists. -#, fuzzy msgid "See all lists you have created." -msgstr "Cjale dutis lis listis che tu âs creât" +msgstr "Cjale dutis lis listis che tu âs creât." #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. @@ -8131,6 +8130,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s si à unît al to grup %2$s su %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8216,10 +8219,9 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. -#, fuzzy msgctxt "TOOLTIP" msgid "Make this user an admin." -msgstr "Bloche chest utent" +msgstr "Promôf chest utent a aministradôr." #. 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." @@ -8421,23 +8423,20 @@ msgstr "intune tabaiade" msgid "Repeated by" msgstr "Ripetût di" -#, fuzzy msgid " " -msgstr ", " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. -#, fuzzy msgid "Reply to this notice." -msgstr "Rispuint a chest avîs" +msgstr "Rispuint a chest avîs." #. TRANS: Link text in notice list item to reply to a notice. msgid "Reply" msgstr "Rispuint" #. TRANS: Link title in notice list item to delete a notice. -#, fuzzy msgid "Delete this notice from the timeline." -msgstr "Elimine chest avîs" +msgstr "Elimine chest avîs de ativitât." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8874,21 +8873,6 @@ msgstr "Cjate il contignût di avîs" msgid "Find groups on this site" msgstr "Cjate grups in chest sît" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Jutori" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Informazions" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "Domandis plui frecuentis" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -8909,17 +8893,6 @@ msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Contats" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sezion cence non" @@ -9003,11 +8976,11 @@ msgstr "" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Come une volte" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" -msgstr "" +msgstr "Impuestazions de grafiche pai utents des vieris versions" #. TRANS: Title of form to silence a user. msgctxt "TITLE" @@ -9233,17 +9206,28 @@ msgstr[0] "Chest i plâs a %%s." msgstr[1] "Chest i plâs a %%s." #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Tu âs ripetût chest avîs." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. -#, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Une persone e à ripetût chest avîs." -msgstr[1] "%d personis a àn ripetût chest avîs." +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, fuzzy, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "I plâs a %%s e %d altris." +msgstr[1] "I plâs a %%s e %d altris." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Chest i plâs a %%s." +msgstr[1] "Chest i plâs a %%s." #. TRANS: Form legend. #, php-format @@ -9345,9 +9329,8 @@ msgid "Unsubscribe" msgstr "Anule la sotscrizion" #. TRANS: Button title on unsubscribe form. -#, fuzzy msgid "Unsubscribe from this user." -msgstr "Anule la sotscrizion a chest utent" +msgstr "Anule la sotscrizion a chest utent." #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index b154fa320c..1623b13afd 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -12,17 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:06+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -92,9 +93,8 @@ msgid "Closed" msgstr "Pechado" #. TRANS: Button title to save access settings in site admin panel. -#, fuzzy msgid "Save access settings." -msgstr "Gardar a configuración de acceso" +msgstr "Gardar a configuración de acceso." #. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. @@ -204,7 +204,6 @@ msgstr "Esa páxina non existe." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -304,10 +303,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Invitacións" +msgstr "Enviar as invitacións" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -317,8 +315,6 @@ msgstr "Invitacións" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amigos" @@ -1443,9 +1439,9 @@ msgstr "Non se coñece o tipo de ficheiro" #. TRANS: Client error displayed trying to subscribe to an already subscribed profile. #. TRANS: %s is the profile the user already has a subscription on. -#, fuzzy, php-format +#, php-format msgid "Already subscribed to %s." -msgstr "Xa está subscrito!" +msgstr "Xa está subscrito a %s." #. TRANS: Client error displayed trying to get a non-existing attachment. msgid "No such attachment." @@ -1559,7 +1555,7 @@ msgstr "Só os usuarios identificados poden repetir notas." #. TRANS: Client exception thrown when trying to backup an account without having backup rights. msgid "You may not backup your account." -msgstr "" +msgstr "Non pode facer unha copia da súa conta." #. TRANS: Information displayed on the backup account page. msgid "" @@ -1610,7 +1606,6 @@ msgid "No" msgstr "Non" #. TRANS: Submit button title for 'No' when blocking a user. -#, fuzzy msgid "Do not block this user." msgstr "Non bloquear este usuario" @@ -1626,9 +1621,8 @@ msgid "Yes" msgstr "Si" #. TRANS: Submit button title for 'Yes' when blocking a user. -#, fuzzy msgid "Block this user." -msgstr "Bloquear este usuario" +msgstr "Bloquear este usuario." #. TRANS: Server error displayed when blocking a user fails. msgid "Failed to save block information." @@ -1673,7 +1667,7 @@ msgstr "Publicar en %s" #. TRANS: Title for leave group page after leaving. #. TRANS: %s$s is the leaving user's name, %2$s is the group name. #. TRANS: Title for leave group page after leaving. -#, fuzzy, php-format +#, php-format msgctxt "TITLE" msgid "%1$s left group %2$s" msgstr "%1$s deixou o grupo %2$s" @@ -1695,7 +1689,6 @@ msgid "No profile with that ID." msgstr "Ningún perfil ten esa ID." #. TRANS: Title after unsubscribing from a group. -#, fuzzy msgctxt "TITLE" msgid "Unsubscribed" msgstr "Cancelouse a subscrición" @@ -1777,9 +1770,8 @@ msgid "Only logged-in users can delete their account." msgstr "Só os usuarios identificados poden repetir notas." #. TRANS: Client exception displayed trying to delete a user account without have the rights to do that. -#, fuzzy msgid "You cannot delete your account." -msgstr "Non pode borrar usuarios." +msgstr "Non pode borrar a súa conta." #. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation. msgid "I am sure." @@ -1792,15 +1784,13 @@ msgid "You must write \"%s\" exactly in the box." msgstr "" #. TRANS: Confirmation that a user account has been deleted. -#, fuzzy msgid "Account deleted." -msgstr "Borrouse o avatar." +msgstr "Conta borrada." #. TRANS: Page title for page on which a user account can be deleted. #. TRANS: Option in profile settings to delete the account of the currently logged in user. -#, fuzzy msgid "Delete account" -msgstr "Crear unha conta" +msgstr "Borrar a conta" #. TRANS: Form text for user deletion form. msgid "" @@ -1914,9 +1904,8 @@ msgstr "" "usuario da base de datos, sen posibilidade de recuperalos." #. TRANS: Submit button title for 'No' when deleting a group. -#, fuzzy msgid "Do not delete this group." -msgstr "Non borrar esta nota" +msgstr "Non borrar este grupo." #. TRANS: Submit button title for 'Yes' when deleting a group. #, fuzzy @@ -1945,9 +1934,8 @@ msgid "Do not delete this notice." msgstr "Non borrar esta nota." #. TRANS: Submit button title for 'Yes' when deleting a notice. -#, fuzzy msgid "Delete this notice." -msgstr "Borrar esta nota" +msgstr "Borrar esta nota." #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. msgid "You cannot delete users." @@ -1976,9 +1964,8 @@ msgstr "" "usuario da base de datos, sen posibilidade de recuperalos." #. TRANS: Submit button title for 'No' when deleting a user. -#, fuzzy msgid "Do not delete this user." -msgstr "Non borrar esta nota" +msgstr "Non borrar este usuario." #. TRANS: Submit button title for 'Yes' when deleting a user. #, fuzzy @@ -1999,6 +1986,79 @@ msgstr "Engadir aos favoritos" msgid "No such document \"%s\"." msgstr "Non hai ningún documento \"%s\"" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Inicio" + +msgctxt "MENU" +msgid "Docs" +msgstr "Documentos" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Axuda" + +#, fuzzy +msgid "Getting started" +msgstr "Gardouse a configuración." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Acerca de" + +#, fuzzy +msgid "About this site" +msgstr "Desbloquear este usuario" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "Preguntas máis frecuentes" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Contacto" + +#, fuzzy +msgid "Contact info" +msgstr "Contacto" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Etiquetas" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#, fuzzy +msgid "Using groups" +msgstr "Grupos do usuario" + +msgctxt "MENU" +msgid "API" +msgstr "API" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -2772,10 +2832,9 @@ msgstr "Enderezo de mensaxería instantánea" #. TRANS: Field title for IM address. %s is the IM service name. #, php-format msgid "%s screenname." -msgstr "" +msgstr "Alcume %s." #. TRANS: Header for IM preferences form. -#, fuzzy msgid "IM Preferences" msgstr "Preferencias de mensaxería instantánea" @@ -2812,7 +2871,6 @@ msgid "Preferences saved." msgstr "Gardáronse as preferencias." #. TRANS: Message given saving IM address without having provided one. -#, fuzzy msgid "No screenname." msgstr "Sen alcume." @@ -2980,9 +3038,8 @@ msgid "%1$s joined group %2$s" msgstr "%1$s uniuse ao grupo %2$s" #. TRANS: Exception thrown when there is an unknown error joining a group. -#, fuzzy msgid "Unknown error joining group." -msgstr "Descoñecida" +msgstr "Erro descoñecido ao unirse ao grupo." #. TRANS: Client error displayed when trying to join a group while already a member. #. TRANS: Error text shown when trying to leave an existing group the user is not a member of. @@ -3011,7 +3068,6 @@ msgstr "" "os dereitos reservados\"." #. TRANS: Client error displayed selecting a too long license title in the license admin panel. -#, fuzzy msgid "Invalid license title. Maximum length is 255 characters." msgstr "Título de licenza incorrecto. A extensión máxima é de 255 caracteres." @@ -3135,7 +3191,6 @@ msgstr "" "compartidas!" #. TRANS: Button text for log in on login page. -#, fuzzy msgctxt "BUTTON" msgid "Login" msgstr "Identificarse" @@ -3195,7 +3250,6 @@ msgid "No current status." msgstr "Sen estado actual." #. TRANS: This is the title of the form for adding a new application. -#, fuzzy msgid "New application" msgstr "Aplicación nova" @@ -3216,9 +3270,8 @@ msgid "Could not create application." msgstr "Non se puido crear a aplicación." #. TRANS: Form validation error messages displayed when uploading an invalid application logo. -#, fuzzy msgid "Invalid image." -msgstr "Tamaño non válido." +msgstr "Imaxe non válida." #. TRANS: Title for form to create a group. msgid "New group" @@ -3274,7 +3327,6 @@ msgstr "Houbo un erro de AJAX" #. TRANS: Page title for sending a new notice. #. TRANS: Title for form to send a new notice. -#, fuzzy msgctxt "TITLE" msgid "New notice" msgstr "Nova nota" @@ -3536,7 +3588,6 @@ msgstr "" "Esta é a súa caixa de saída. Nela lístanse as mensaxes privadas que enviou." #. TRANS: Title for page where to change password. -#, fuzzy msgctxt "TITLE" msgid "Change password" msgstr "Cambiar o contrasinal" @@ -3561,9 +3612,8 @@ msgstr "Novo contrasinal" #. TRANS: Field title on page where to change password. #. TRANS: Field title on account registration page. -#, fuzzy msgid "6 or more characters." -msgstr "Seis ou máis caracteres" +msgstr "Seis ou máis caracteres." #. TRANS: Field label on page where to change password. In this field the new password should be typed a second time. msgctxt "LABEL" @@ -3573,9 +3623,8 @@ msgstr "Confirmar" #. TRANS: Field title on page where to change password. #. TRANS: Title for field label for password reset form where the password has to be typed again. #. TRANS: Field title on account registration page. -#, fuzzy msgid "Same as password above." -msgstr "Igual ao contrasinal anterior" +msgstr "Igual ao contrasinal anterior." #. TRANS: Button text on page where to change password. msgctxt "BUTTON" @@ -3589,14 +3638,12 @@ msgstr "O contrasinal debe conter seis ou máis caracteres." #. TRANS: Form validation error on password change when password confirmation does not match. #. TRANS: Form validation error displayed when trying to register with non-matching passwords. -#, fuzzy msgid "Passwords do not match." msgstr "Os contrasinais non coinciden." #. TRANS: Form validation error on page where to change password. -#, fuzzy msgid "Incorrect old password." -msgstr "O contrasinal anterior non é correcto" +msgstr "O contrasinal anterior non é correcto." #. TRANS: Form validation error on page where to change password. msgid "Error saving user; invalid." @@ -3605,7 +3652,6 @@ msgstr "Houbo un erro ao gardar o usuario. Incorrecto." #. TRANS: Server error displayed on page where to change password when password change #. TRANS: could not be made because of a server error. #. TRANS: Reset password form validation error message. -#, fuzzy msgid "Cannot save new password." msgstr "Non se puido gardar o novo contrasinal." @@ -3677,12 +3723,10 @@ msgid "Fancy URLs" msgstr "Enderezos URL elegantes" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Use fancy URLs (more readable and memorable)?" msgstr "Quere utilizar os enderezos URL elegantes (mellores de ler e lembrar)?" #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "Theme" msgstr "Tema visual" @@ -3712,9 +3756,8 @@ msgid "SSL path to themes (default: /theme/)." msgstr "" #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Directory" -msgstr "Directorio de temas visuais" +msgstr "Directorio" #. TRANS: Tooltip for field label in Paths admin panel. #, fuzzy @@ -3897,7 +3940,7 @@ msgstr "Editar o grupo %s" #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Listas de %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. @@ -3910,9 +3953,8 @@ msgid "You cannot view others' private lists" msgstr "" #. TRANS: Mode selector label. -#, fuzzy msgid "Mode" -msgstr "Moderar" +msgstr "Modo" #. TRANS: Link text to show lists for user %s. #, fuzzy, php-format @@ -3929,7 +3971,6 @@ msgid "Show private tags." msgstr "" #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" msgstr "Públicas" @@ -3941,7 +3982,6 @@ msgstr "Esa etiqueta non existe." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "Continuar" @@ -4394,50 +4434,6 @@ msgstr "" "wikipedia.org/wiki/Microblogging) (en inglés) baseado na ferramenta de " "software libre [StatusNet](http://status.net/)." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Nube de etiquetas públicas" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -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 list cloud. -#. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format -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 list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "Sexa o primeiro en publicar unha!" - -#. 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Non se atopou o método da API." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -4539,7 +4535,6 @@ msgid "Recover" msgstr "Recuperar" #. TRANS: Button text on password recovery page. -#, fuzzy msgctxt "BUTTON" msgid "Recover" msgstr "Recuperar" @@ -4558,12 +4553,10 @@ msgid "Password recovery requested" msgstr "Solicitouse a recuperación do contrasinal" #. TRANS: Title for password recovery page in password saved mode. -#, fuzzy msgid "Password saved" -msgstr "Gardouse o contrasinal." +msgstr "Gardouse o contrasinal" #. TRANS: Title for field label for password reset form. -#, fuzzy msgid "6 or more characters, and do not forget it!" msgstr "Seis ou máis caracteres, e non o esqueza!" @@ -4589,7 +4582,6 @@ msgid "Unexpected password reset." msgstr "Restablecemento de contrasinal inesperado." #. TRANS: Reset password form validation error message. -#, fuzzy msgid "Password must be 6 characters or more." msgstr "O contrasinal debe ter seis ou máis caracteres." @@ -4607,15 +4599,14 @@ msgid "New password successfully saved. You are now logged in." msgstr "O novo contrasinal gardouse correctamente. Agora está identificado." #. TRANS: Client exception thrown when no ID parameter was provided. -#, fuzzy msgid "No id parameter." msgstr "Sen argumento ID." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "Non existe tal ficheiro." +msgstr "Non existe o ficheiro \"%d\"." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4630,7 +4621,6 @@ msgid "Registration successful" msgstr "Rexistrouse correctamente" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "Rexistrarse" @@ -4640,7 +4630,6 @@ msgid "Registration not allowed." msgstr "Non se permite o rexistro." #. TRANS: Form validation error displayed when trying to register without agreeing to the site license. -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "Non pode rexistrarse se non acepta a licenza." @@ -4653,39 +4642,33 @@ msgid "Invalid username or password." msgstr "O nome de usuario ou contrasinal non son correctos." #. TRANS: Page notice on registration page. -#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues." msgstr "" "Con este formulario pode crear unha conta nova. Entón poderá publicar notas " -"e porse en contacto con amigos e compañeiros. " +"e porse en contacto con amigos e compañeiros." #. TRANS: Field label on account registration page. In this field the password has to be entered a second time. -#, fuzzy msgctxt "PASSWORD" msgid "Confirm" msgstr "Confirmar" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" msgstr "Correo electrónico" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Used only for updates, announcements, and password recovery." msgstr "" "Só se utiliza para actualizacións, anuncios e recuperación de contrasinais" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Longer name, preferably your \"real\" name." -msgstr "Nome longo, preferiblemente o seu nome \"real\"" +msgstr "Nome longo, preferiblemente o seu nome \"real\"." #. TRANS: Button text to register a user on account registration page. -#, fuzzy msgctxt "BUTTON" msgid "Register" msgstr "Rexistrarse" @@ -4782,9 +4765,8 @@ msgid "" msgstr "" #. TRANS: Title after removing a user from a list. -#, fuzzy msgid "Unlisted" -msgstr "Licenza" +msgstr "Non listado" #. TRANS: Client error displayed when trying to repeat a notice while not logged in. msgid "Only logged-in users can repeat notices." @@ -4885,9 +4867,8 @@ msgid "Only logged-in users can restore their account." msgstr "Só os usuarios identificados poden repetir notas." #. TRANS: Client exception displayed when trying to restore an account without having restore rights. -#, fuzzy msgid "You may not restore your account." -msgstr "Aínda non rexistrou ningunha aplicación." +msgstr "Non pode restaurar a súa conta." #. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file. #. TRANS: Client exception. No file; probably just a non-AJAX submission. @@ -4992,7 +4973,6 @@ msgid "Users self-tagged with %1$s, page %2$d" msgstr "Usuarios etiquetados por si mesmos con %1$s - páxina %2$d" #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "Sesións" @@ -5002,7 +4982,6 @@ msgid "Session settings for this StatusNet site" msgstr "Configuración de sesión para este sitio StatusNet" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "Sesións" @@ -5055,10 +5034,9 @@ msgid "Application actions" msgstr "Accións da aplicación" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" -msgstr "Modificar" +msgstr "Editar" #. TRANS: Button text on the OAuth application page. #. TRANS: Resets the OAuth consumer key and secret. @@ -5206,7 +5184,7 @@ msgid "FOAF for %s group" msgstr "Amigo dun amigo para o grupo %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5225,14 +5203,14 @@ msgstr "" "e de moitos máis! ([Máis información](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." 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) " @@ -5335,9 +5313,8 @@ msgstr "" #. TRANS: Header on show list page. #. TRANS: Link description for link to list of users tagged with a tag (so part of a list). -#, fuzzy msgid "Listed" -msgstr "Licenza" +msgstr "Listado" #. TRANS: Content of "Listed" page if there are no listed users. #. TRANS: Content of "People following tag x" if there are no subscribed users. @@ -5352,20 +5329,14 @@ msgstr "(Ningún)" #. 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 "Mostrar máis" +msgstr "Mostrar todo" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. msgid "Subscribers" msgstr "Subscritores" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Todos os subscritores" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5460,11 +5431,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** ten unha conta en %%%%site.name%%%%, un servizo de [mensaxes de " "blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " @@ -5485,7 +5456,6 @@ msgid "User is already silenced." msgstr "O usuario xa está silenciado." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Sitio" @@ -5526,13 +5496,11 @@ msgid "Dupe limit must be one or more seconds." msgstr "O tempo límite de repetición debe ser de 1 ou máis segundos." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "Xeral" #. TRANS: Field label on site settings panel. -#, fuzzy msgctxt "LABEL" msgid "Site name" msgstr "Nome do sitio" @@ -5572,7 +5540,6 @@ msgid "Contact email address for your site." msgstr "Enderezo de correo electrónico de contacto para o seu sitio" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Local" msgstr "Local" @@ -5598,7 +5565,6 @@ msgstr "" "sexa posible" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Límites" @@ -5808,7 +5774,6 @@ msgid "No code entered." msgstr "Non se introduciu ningún código" #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Instantáneas" @@ -5830,7 +5795,6 @@ msgid "Invalid snapshot report URL." msgstr "URL de envío das instantáneas incorrecto." #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "Instantáneas" @@ -6003,13 +5967,12 @@ msgstr "Estas son as persoas cuxas notas segue %s." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Agora mesmo non está a seguir as notas de ninguén, probe a subscribirse a " "xente que coñeza. Intente [buscar xente](%%action.peoplesearch%%), buscar " @@ -6031,7 +5994,6 @@ msgid "Subscription feed for %s (Atom)" msgstr "Fonte de novas das notas para %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "MI" @@ -6084,16 +6046,15 @@ msgstr "Perfil do usuario" #. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgctxt "ADDTOLIST" msgid "List %s" -msgstr "Límites" +msgstr "Lista %s" #. TRANS: Title for list form when an error has occurred. -#, fuzzy msgctxt "TITLE" msgid "Error" -msgstr "Houbo un erro de AJAX" +msgstr "Erro" #. TRANS: Header in list form. msgid "User profile" @@ -6105,10 +6066,9 @@ msgid "List user" msgstr "Límites" #. TRANS: Field label on list form. -#, fuzzy msgctxt "LABEL" msgid "Lists" -msgstr "Límites" +msgstr "Listas" #. TRANS: Field title on list form. #, fuzzy @@ -6120,7 +6080,6 @@ msgstr "" "guións baixos), separados por comas ou espazos" #. TRANS: Title for personal tag cloud section. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "Etiquetas" @@ -6246,7 +6205,6 @@ msgid "Invalid bio limit. Must be numeric." msgstr "Límite da biografía incorrecto. Debe ser numérico." #. TRANS: Form validation error in user admin panel when welcome text is too long. -#, fuzzy msgid "Invalid welcome text. Maximum length is 255 characters." msgstr "Texto de benvida incorrecto. A extensión máxima é de 255 caracteres." @@ -6303,9 +6261,8 @@ msgid "Whether to allow users to invite new users." msgstr "Permitir ou non que os usuarios poidan invitar a novos usuarios." #. TRANS: Button title to save user settings in user admin panel. -#, fuzzy msgid "Save user settings." -msgstr "Gardar a configuración do usuario" +msgstr "Gardar a configuración do usuario." #. TRANS: Page title for all but the first page of groups for a user. #. TRANS: %1$s is a nickname, %2$d is a page number. @@ -6362,11 +6319,12 @@ msgid "License" msgstr "Licenza" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet é software libre: pode redistribuílo e modificalo baixo os termos " "da Licenza Pública Xeral Affero de GNU, tal e como a publicou a Free " @@ -6374,11 +6332,12 @@ msgstr "" "usuario) da licenza. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Este programa distribúese coa esperanza de que resulte útil, pero SEN " "NINGUNHA GARANTÍA, nin sequera as garantías implícitas de COMERCIALIZACIÓN " @@ -6632,7 +6591,7 @@ msgstr "RT @%1$s %2$s" #. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens -#, fuzzy, php-format +#, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -7004,14 +6963,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 "Buscar nos contidos das notas" +msgstr "A nota %s non ten ningún contido." #. 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 "Non existe tal usuario." +msgstr "Non hai tal usuario \"%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. @@ -7019,10 +6978,10 @@ msgstr "Non existe tal usuario." #. 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." @@ -7053,23 +7012,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() non está integrado." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Inicio" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Inicio" - #. TRANS: Header in administrator navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Admin" msgstr "Administrador" @@ -7088,7 +7035,6 @@ msgid "User configuration" msgstr "Configuración do usuario" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "User" msgstr "Usuario" @@ -7098,7 +7044,6 @@ msgid "Access configuration" msgstr "Configuración de acceso" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Access" msgstr "Acceso" @@ -7108,7 +7053,6 @@ msgid "Paths configuration" msgstr "Configuración das rutas" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "Rutas" @@ -7118,7 +7062,6 @@ msgid "Sessions configuration" msgstr "Configuración das sesións" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "Sesións" @@ -7128,7 +7071,6 @@ msgid "Edit site notice" msgstr "Modificar a nota do sitio" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" msgstr "Nota do sitio" @@ -7138,7 +7080,6 @@ msgid "Snapshots configuration" msgstr "Configuración das instantáneas" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" msgstr "Instantáneas" @@ -7148,18 +7089,15 @@ msgid "Set site license" msgstr "Definir a licenza do sitio" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "Licenza" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Plugins configuration" -msgstr "Configuración das rutas" +msgstr "Configuración dos complementos" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Plugins" msgstr "Complementos" @@ -7176,7 +7114,7 @@ msgstr "Non hai ningunha aplicación para esa clave." #. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." -msgstr "" +msgstr "Non ten permiso para usar o API." #. TRANS: OAuth exception given when an incorrect access token was given for a user. msgid "Bad access token." @@ -7282,14 +7220,13 @@ msgid "Save application changes." msgstr "Aplicación nova" #. TRANS: Name for an anonymous application in application list. -#, fuzzy msgid "Unknown application" -msgstr "Non se coñece esa acción" +msgstr "Aplicación descoñecida" #. 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 " por " #. TRANS: Application access type msgid "read-write" @@ -7491,7 +7428,7 @@ msgstr[1] "%1$s - %2$s" #. TRANS: Separator for list of tags. #. TRANS: Separator in list of user names like "Jim, Bob, Mary". msgid ", " -msgstr "" +msgstr ", " #. TRANS: Error displayed if a given tag is invalid. #. TRANS: %s is the invalid tag. @@ -7516,7 +7453,7 @@ msgstr[1] "" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. -#, fuzzy, php-format +#, php-format msgctxt "WHOIS" msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" @@ -7724,7 +7661,7 @@ msgstr "Non se pode desactivar a notificación." #. TRANS: Help message for IM/SMS command "help". msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "mostrar esta axuda" #. TRANS: Help message for IM/SMS command "follow ". #, fuzzy @@ -7912,25 +7849,15 @@ msgstr "Houbo un erro na base de datos" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" msgstr "Públicas" -#. TRANS: 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 "Grupos" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "Límites" +msgstr "Listas" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -8010,7 +7937,6 @@ msgid "Feeds" msgstr "Fontes de novas" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" msgstr "Todas" @@ -8020,9 +7946,8 @@ msgid "Tag" msgstr "Etiqueta" #. TRANS: Dropdown field title on gallery action page for a list containing tags. -#, fuzzy msgid "Choose a tag to narrow list." -msgstr "Escolla unha etiqueta para reducir a lista" +msgstr "Escolla unha etiqueta para reducir a lista." #. TRANS: Description on form for granting a role. #, php-format @@ -8038,16 +7963,14 @@ msgid "All members" msgstr "Todos os membros" #. TRANS: Header for mini list of users with a pending membership request on a group page (h2). -#, fuzzy msgid "Pending" -msgstr "Pendentes (%d)" +msgstr "Pendentes" #. TRANS: Header for mini list of users that are blocked in a group page (h2). msgid "Blocked" msgstr "Bloqueado" #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "Administradores" @@ -8114,7 +8037,6 @@ msgid "" msgstr "" #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" msgstr "Administrador" @@ -8143,23 +8065,25 @@ msgid "Logo" msgstr "Logotipo" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "Notas populares" +msgstr "Grupos populares" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "Todos os grupos" +msgstr "Grupos activos" #. TRANS: Link description for seeing all groups. #. TRANS: Link description for seeing all lists. -#, fuzzy msgid "See all" -msgstr "Mostrar máis" +msgstr "Ollar todos" #. TRANS: Link title for seeing all groups. msgid "See all groups you belong to." +msgstr "Olle todos os grupos aos que pertence." + +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" msgstr "" #. TRANS: Client exception 406 @@ -8194,25 +8118,25 @@ msgid "Unknown file type" msgstr "Non se coñece o tipo de ficheiro" #. TRANS: Number of megabytes. %d is the number. -#, fuzzy, php-format +#, php-format msgid "%dMB" msgid_plural "%dMB" -msgstr[0] "MB" -msgstr[1] "MB" +msgstr[0] "%dMB" +msgstr[1] "%dMB" #. TRANS: Number of kilobytes. %d is the number. -#, fuzzy, php-format +#, php-format msgid "%dkB" msgid_plural "%dkB" -msgstr[0] "kB" -msgstr[1] "kB" +msgstr[0] "%dkB" +msgstr[1] "%dkB" #. TRANS: Number of bytes. %d is the number. #, php-format msgid "%dB" msgid_plural "%dB" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%dB" +msgstr[1] "%dB" #. TRANS: Body text for confirmation code e-mail. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, @@ -8243,7 +8167,7 @@ msgstr "" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trends" -msgstr "" +msgstr "Tendencias" #. TRANS: Default button text for inviting more users to the StatusNet instance. #, fuzzy @@ -8280,18 +8204,15 @@ msgid "Send" msgstr "Enviar" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "Invitacións" +msgstr "Enviar as invitacións." #. TRANS: Button text for joining a group. -#, fuzzy msgctxt "BUTTON" msgid "Join" msgstr "Unirse" #. TRANS: Button text on form to leave a group. -#, fuzzy msgctxt "BUTTON" msgid "Leave" msgstr "Deixar" @@ -8645,6 +8566,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s uniuse ao grupo %2$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8853,7 +8778,7 @@ msgstr "" #. TRANS: Link description to show more items in a list. msgid "More ▼" -msgstr "" +msgstr "Máis ▼" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." @@ -8903,7 +8828,7 @@ msgstr "" #. TRANS: Separator in profile addressees list. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Used in coordinates as abbreviation of north. msgid "N" @@ -8943,7 +8868,7 @@ msgid "Repeated by" msgstr "Repetida por" msgid " " -msgstr "" +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. #, fuzzy @@ -8966,7 +8891,7 @@ msgstr "Repetiuse a nota" #. TRANS: Field label for notice text. msgid "Update your status..." -msgstr "" +msgstr "Actualice o seu estado..." #. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" @@ -8989,10 +8914,9 @@ msgid "No oEmbed API endpoint available." msgstr "A mensaxería instantánea non está dispoñible." #. TRANS: Field label for list. -#, fuzzy msgctxt "LABEL" msgid "List" -msgstr "Ligazóns" +msgstr "Lista" #. TRANS: Field title for list. #, fuzzy @@ -9113,7 +9037,7 @@ msgstr "Actualizacións con \"%s\"" #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "Listas de %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. @@ -9223,15 +9147,13 @@ msgid "" msgstr "" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "Configuración dos SMS" +msgstr "Configuracións" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Change your personal settings." -msgstr "Cambie a configuración do seu perfil" +msgstr "Cambie a súa configuración persoal." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -9239,9 +9161,8 @@ msgid "Admin" msgstr "Administrador" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Site configuration." -msgstr "Configuración do usuario" +msgstr "Configuración do sitio." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -9249,24 +9170,20 @@ msgid "Logout" msgstr "Saír" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Logout from the site." -msgstr "Saír ao anonimato" +msgstr "Saír ao anonimato." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Login to the site." -msgstr "Identificarse no sitio" +msgstr "Identificarse no sitio." #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "Seguir" +msgstr "Seguindo" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "Seguir" +msgstr "Seguidores" #. TRANS: H2 text for user statistics. msgid "Statistics" @@ -9290,9 +9207,8 @@ msgid "Groups" msgstr "Grupos" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "Límites" +msgstr "Listas" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -9303,7 +9219,6 @@ msgid "User groups" msgstr "Grupos do usuario" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" msgstr "Últimas etiquetas" @@ -9313,13 +9228,11 @@ msgid "Recent tags" msgstr "Últimas etiquetas" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Featured" msgstr "Salientadas" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" msgstr "Populares" @@ -9327,7 +9240,7 @@ msgstr "Populares" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trending topics" -msgstr "" +msgstr "Temas do momento" #. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." @@ -9338,9 +9251,8 @@ msgid "Repeat this notice?" msgstr "Quere repetir esta nota?" #. TRANS: Button title to repeat a notice on notice repeat form. -#, fuzzy msgid "Repeat this notice." -msgstr "Repetir esta nota" +msgstr "Repetir esta nota." #. TRANS: Description of role revoke form. %s is the role to be revoked. #, php-format @@ -9352,10 +9264,9 @@ msgid "Page not found." msgstr "Non se atopou a páxina." #. TRANS: Title of form to sandbox a user. -#, fuzzy msgctxt "TITLE" msgid "Sandbox" -msgstr "Illar" +msgstr "Zona de probas" #. TRANS: Description of form to sandbox a user. msgid "Sandbox this user" @@ -9420,21 +9331,6 @@ msgstr "Buscar nos contidos das notas" msgid "Find groups on this site" msgstr "Buscar grupos neste sitio" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Axuda" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Acerca de" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "Preguntas máis frecuentes" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9455,17 +9351,6 @@ msgctxt "MENU" msgid "Version" msgstr "Versión" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Contacto" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Insignia" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sección sen título" @@ -9490,7 +9375,7 @@ msgstr "Avatar" #. TRANS: Menu item title in settings navigation panel. msgid "Upload an avatar" -msgstr "Cargue un avatar" +msgstr "Cargar un avatar" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" @@ -9681,7 +9566,6 @@ msgid "People Tagcloud as tagged" msgstr "Nube de etiquetas que lle puxo a outras persoas" #. TRANS: Content displayed in a tag cloud section if there are no tags. -#, fuzzy msgctxt "NOTAGS" msgid "None" msgstr "Ningún" @@ -9752,18 +9636,17 @@ msgid "Error opening theme archive." msgstr "Houbo un erro ao abrir o arquivo do tema visual." #. TRANS: Header for Notices section. -#, fuzzy msgctxt "HEADER" msgid "Notices" msgstr "Notas" #. TRANS: Link to show replies for a notice. #. TRANS: %d is the number of replies to a notice and used for plural. -#, fuzzy, php-format +#, php-format msgid "Show reply" msgid_plural "Show all %d replies" -msgstr[0] "Mostrar máis" -msgstr[1] "Mostrar máis" +msgstr[0] "Mostrar a resposta" +msgstr[1] "Mostrar as %d respostas" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" @@ -9804,16 +9687,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Xa repetiu esa nota." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Xa repetiu esa nota." -msgstr[1] "Xa repetiu esa nota." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Repetiu a %s" +msgstr[1] "Repetiu a %s" #. TRANS: Form legend. #, fuzzy, php-format @@ -9845,15 +9738,15 @@ msgstr "Escolla unha etiqueta para reducir a lista" #. TRANS: Form legend. #. TRANS: %1$s is a nickname, $2$s is a list. -#, fuzzy, php-format +#, php-format msgid "Remove %1$s from list %2$s" -msgstr "%1$s - %2$s" +msgstr "Eliminar %1$s da lista %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 +#, php-format msgid "Add %1$s to list %2$s" -msgstr "%1$s - %2$s" +msgstr "Engadir %1$s á lista %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -9913,15 +9806,13 @@ msgstr "Cancelar a subscrición a este usuario" #. TRANS: Button text on unsubscribe form. #. TRANS: Button text for unsubscribing from a list. -#, fuzzy msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancelar a subscrición" #. TRANS: Button title on unsubscribe form. -#, fuzzy msgid "Unsubscribe from this user." -msgstr "Cancelar a subscrición a este usuario" +msgstr "Cancelar a subscrición a este usuario." #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 6e46778a14..94d2cfe656 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:08+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -206,7 +207,6 @@ msgstr "אין משתמש כזה." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -315,8 +315,6 @@ msgstr "שליחת הזמנה" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s וחברים" @@ -1912,6 +1910,77 @@ msgstr "הוספה למועדפים" msgid "No such document \"%s\"." msgstr "" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "עזרה" + +#, fuzzy +msgid "Getting started" +msgstr "ההגדרות נשמרו." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "" + +#, fuzzy +msgid "About this site" +msgstr "לבטל חסימת משתמש" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "" + +msgid "Contact info" +msgstr "" + +msgctxt "MENU" +msgid "Tags" +msgstr "" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "" + +#, fuzzy +msgid "Using groups" +msgstr "קבוצות %s" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4128,45 +4197,6 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "" - -#. 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 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 list " -"someone!" -msgstr "" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4859,7 +4889,7 @@ msgid "FOAF for %s group" msgstr "חברים של חברים עבר הקבוצה %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -4872,14 +4902,14 @@ msgid "" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" #. TRANS: Client error displayed requesting a single message that does not exist. @@ -4998,11 +5028,6 @@ msgstr "" msgid "Subscribers" msgstr "מנויים" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "כל המנויים" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5094,7 +5119,7 @@ msgstr "" msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. @@ -5588,8 +5613,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -5916,7 +5940,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -5924,7 +5948,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6410,13 +6434,13 @@ msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." msgstr "" -"**%%site.name%%** הוא שירות ביקרובלוג הניתן על־ידי [%%site.broughtby%%](%%" +"**%%site.name%%** הוא שירות מיקרובלוג הניתן על־ידי [%%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 "**%%site.name%%** הוא שרות ביקרובלוג." +msgstr "**%%site.name%%** הוא שרות מיקרובלוג." #. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. #. TRANS: Make sure there is no whitespace between "]" and "(". @@ -6558,19 +6582,10 @@ msgid "saveSettings() not implemented." msgstr "" #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7371,13 +7386,6 @@ msgctxt "MENU" msgid "Public" msgstr "" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7595,6 +7603,11 @@ msgstr "" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" @@ -7972,6 +7985,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s הזמין אותך להצטרף אליהם באתר %2$s" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8706,21 +8723,6 @@ msgstr "" msgid "Find groups on this site" msgstr "" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "עזרה" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -8741,17 +8743,6 @@ msgctxt "MENU" msgid "Version" msgstr "" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "" @@ -9065,17 +9056,28 @@ msgstr[0] "" msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "הדהדת את העדכון הזה." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "אדם אחד הדהד את העדכון הזה." -msgstr[1] "%d אנשים הדהדו את העדכון הזה." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "הודהד אל %s" +msgstr[1] "הודהד אל %s" #. TRANS: Form legend. #, php-format diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index ca9ae52c56..ec7dde4af8 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -12,18 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:09+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -208,7 +209,6 @@ msgstr "Strona njeeksistuje." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -313,8 +313,6 @@ msgstr "Přeprošenja" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s a přećeljo" @@ -1944,6 +1942,83 @@ msgstr "K faworitam přidać" msgid "No such document \"%s\"." msgstr "Dokument \"%s\" njeeksistuje." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Startowa strona" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Pomoc" + +#, fuzzy +msgid "Getting started" +msgstr "Nastajenja składowane." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "Wo" + +#, fuzzy +msgid "About this site" +msgstr "Tutoho wužiwarja wotblokować" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "Huste prašenja" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Kontakt" + +#, fuzzy +msgid "Contact info" +msgstr "Kontakt" + +msgctxt "MENU" +msgid "Tags" +msgstr "" + +msgid "Using tags" +msgstr "" + +#. 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 "Skupiny" + +#, fuzzy +msgid "Using groups" +msgstr "Wužiwarske skupiny" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4214,52 +4289,6 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Zjawna časowa lajsta, strona %d" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "" - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "Budź prěni, kiž tajki pisa!" - -#. 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 list " -"someone!" -msgstr "" -"%s nima abonentow. Čehodla nochceš [konto registrować] (%%%%action.register%%" -"%%) a prěni być?" - -#. TRANS: DT element on on page with public list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Wužiwar njenamakany." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4965,7 +4994,7 @@ msgid "FOAF for %s group" msgstr "FOAF za skupinu %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -4978,14 +5007,14 @@ msgid "" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" #. TRANS: Client error displayed requesting a single message that does not exist. @@ -5109,11 +5138,6 @@ msgstr "Wjace pokazać" msgid "Subscribers" msgstr "Abonenća" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Wšitcy abonenća" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5203,7 +5227,7 @@ msgstr "" msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. @@ -5717,8 +5741,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6059,7 +6082,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6067,7 +6090,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6724,21 +6747,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() njeimplementowany." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Startowa strona" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Startowa strona" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7598,14 +7611,6 @@ msgctxt "MENU" msgid "Public" msgstr "Zjawny" -#. 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 "Skupiny" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -7838,6 +7843,11 @@ msgstr "Wjace pokazać" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "" @@ -8232,6 +8242,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s je do skupiny %2$s zastupił." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9020,23 +9034,6 @@ msgstr "Wobsah zdźělenkow přepytać" msgid "Find groups on this site" msgstr "Skupiny na tutym sydle pytać" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Pomoc" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "Wo" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "Huste prašenja" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9061,19 +9058,6 @@ msgctxt "MENU" msgid "Version" msgstr "Wersija" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Kontakt" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Plaketa" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Wotrězk bjez titula" @@ -9410,18 +9394,30 @@ msgstr[3] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Sy tutu zdźělenku hižo wospjetował." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Tuta zdźělenka bu hižo wospjetowana." -msgstr[1] "Tuta zdźělenka bu hižo wospjetowana." -msgstr[2] "Tuta zdźělenka bu hižo wospjetowana." -msgstr[3] "Tuta zdźělenka bu hižo wospjetowana." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Do %s wospjetowany" +msgstr[1] "Do %s wospjetowany" +msgstr[2] "Do %s wospjetowany" +msgstr[3] "Do %s wospjetowany" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index fa4c68a10c..eadbf5a098 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:11+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:11:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -207,7 +208,6 @@ msgstr "Nincs ilyen lap." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -316,8 +316,6 @@ msgstr "Meghívások" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s és barátai" @@ -1991,6 +1989,85 @@ msgstr "Hozzáadás a kedvencekhez" msgid "No such document \"%s\"." msgstr "Nincs ilyen dokumentum: „%s”" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Otthon" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#, fuzzy +msgctxt "MENU" +msgid "Help" +msgstr "Súgó" + +#, fuzzy +msgid "Getting started" +msgstr "A beállításokat elmentettük." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "Névjegy" + +#, fuzzy +msgid "About this site" +msgstr "Ezen felhasználó blokkjának feloldása" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "GyIK" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Kapcsolat" + +#, fuzzy +msgid "Contact info" +msgstr "Kapcsolat" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Címkék" + +msgid "Using tags" +msgstr "" + +#. 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 "Csoportok" + +#, fuzzy +msgid "Using groups" +msgstr "A felhasználó csoportjai" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4321,45 +4398,6 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "" - -#. 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 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 list " -"someone!" -msgstr "" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Listafelhő" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5079,7 +5117,7 @@ msgid "FOAF for %s group" msgstr "FOAF a %s csoportnak" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5098,15 +5136,21 @@ msgstr "" "még sok másiknak is! ([Tudj meg többet](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" +"**%s** egy felhasználói csoport a %%%%site.name%%%% webhelyen - ami egy " +"[mikroblog](http://hu.wikipedia.org/wiki/Mikroblog#Mikroblog), mely a szabad " +"[StatusNet](http://status.net/) szoftveren fut. A csoport tagjai rövid " +"üzeneteket írnak az életükről és az érdeklődési körükkel kapcsolatban.\n" +"[Csatlakozz](%%%%action.register%%%%), és légy tagja ennek a csoportnak - és " +"még sok másiknak is! ([Tudj meg többet](%%%%doc.help%%%%))" #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5225,11 +5269,6 @@ msgstr "Összes megjelenítése" msgid "Subscribers" msgstr "Feliratkozók" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Minden feliratkozott" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5320,11 +5359,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** %%%%site.name%%%% felhasználó, [mikroblogot](http://hu.wikipedia.org/" "wiki/Mikroblog#Mikroblog) ír egy webhelyen, ami a szabad [StatusNet](http://" @@ -5837,8 +5876,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6174,7 +6212,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6182,7 +6220,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6829,21 +6867,11 @@ msgid "saveSettings() not implemented." msgstr "a saveSettings() nincs megvalósítva." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Otthon" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Otthon" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7677,14 +7705,6 @@ msgctxt "MENU" msgid "Public" msgstr "Nyilvános" -#. 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 "Csoportok" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7919,6 +7939,11 @@ msgstr "Összes megjelenítése" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "A lap nem érhető el abban a médiatípusban, amit elfogadsz" @@ -8367,6 +8392,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s csatlakozott a(z) %2$s csoporthoz" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9139,24 +9168,6 @@ msgstr "Keressünk a hírek tartalmában" msgid "Find groups on this site" msgstr "Csoportok keresése az oldalon" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -#, fuzzy -msgctxt "MENU" -msgid "Help" -msgstr "Súgó" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "Névjegy" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "GyIK" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9181,19 +9192,6 @@ msgctxt "MENU" msgid "Version" msgstr "Munkamenetek" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Kapcsolat" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Megbök" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Névtelen szakasz" @@ -9529,16 +9527,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Ne töröljük ezt a hírt" -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Már megismételted azt a hírt." -msgstr[1] "Már megismételted azt a hírt." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Ne töröljük ezt a hírt" +msgstr[1] "Ne töröljük ezt a hírt" #. TRANS: Form legend. #, php-format diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index d6c575f463..788fc734b0 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -208,7 +209,6 @@ msgstr "Pagina non existe." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -319,8 +319,6 @@ msgstr "Inviar invitation" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amicos" @@ -1965,6 +1963,74 @@ msgstr "Adder al favorites" msgid "No such document \"%s\"." msgstr "Le documento \"%s\" non existe." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Initio" + +msgctxt "MENU" +msgid "Docs" +msgstr "Documentation" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Adjuta" + +msgid "Getting started" +msgstr "Como initiar" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "A proposito" + +msgid "About this site" +msgstr "A proposito de iste sito" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "Folio a questiones" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Contacto" + +msgid "Contact info" +msgstr "Information de contacto" + +msgctxt "MENU" +msgid "Tags" +msgstr "Etiquettas" + +msgid "Using tags" +msgstr "Como usar etiquettas" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Gruppos" + +msgid "Using groups" +msgstr "Como usar gruppos" + +msgctxt "MENU" +msgid "API" +msgstr "API" + +msgid "RESTful API" +msgstr "API conforme a REST" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3380,13 +3446,12 @@ msgid "Not a supported data format." msgstr "Formato de datos non supportate." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "Configuration de messageria instantanee" +msgstr "Configuration del ancian interfacie" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "Si tu prefere \"le vetule maniera\", tu pote indicar lo hic." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3394,13 +3459,13 @@ msgid "Settings saved." msgstr "Preferentias confirmate." msgid "Only stream mode (no conversations) in timelines" -msgstr "" +msgstr "Solmente modo de fluxo (sin conversationes) in chronologias" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Monstrar pagina de conversation como arbore hierarchic" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Monstrar pseudonymos (non nomines complete) in chronologias" #. TRANS: Button text to save a list. msgid "Save" @@ -4274,47 +4339,6 @@ 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 list cloud. -msgid "Public list cloud" -msgstr "Listario public" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Istes es le listas le plus grande in %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Nemo ha ancora [listate](%%doc.tags%%) alcuno." - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -msgid "Be the first to list someone!" -msgstr "Sia le prime a listar alcuno!" - -#. 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 list " -"someone!" -msgstr "" -"!Proque non [crear un conto](%%action.register%%) e devenir le prime a " -"listar alcuno?" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Listario" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "1 persona listate" -msgstr[1] "%d personas listate" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5057,7 +5081,7 @@ msgid "FOAF for %s group" msgstr "Amico de un amico pro le gruppo %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5075,19 +5099,19 @@ msgstr "" "parte de iste gruppo e multe alteres! ([Lege plus](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** es un gruppo de usatores in %%%%site.name%%%%, un servicio de [micro-" "blogging](http://ia.wikipedia.org/wiki/Microblog) a base del software libere " -"[StatusNet](http://status.net/). Su membros condivide breve messages super " -"lor vita e interesses. " +"[StatusNet](http://status.net/). Su membros intercambia breve messages super " +"lor vita e interesses." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5209,11 +5233,6 @@ msgstr "Monstrar totes" msgid "Subscribers" msgstr "Subscriptores" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Tote le subscriptores" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5309,11 +5328,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** ha un conto in %%%%site.name%%%%, un servicio de [micro-blogging]" "(http://en.wikipedia.org/wiki/Microblog) a base del software libere " @@ -5824,15 +5843,12 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Tu non seque le notas de alcuno in iste momento. Tenta subscriber te a " "personas que tu cognosce. Proba [le recerca de personas](%%action." "peoplesearch%%), cerca membros in le gruppos de tu interesse e in le " -"[usatores in evidentia](%%action.featured%%). Si tu es [usator de Twitter](%%" -"action.twittersettings%%), tu pote automaticamente subscriber te a personas " -"que tu ja seque la." +"[usatores in evidentia](%%action.featured%%)." #. 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. @@ -6166,11 +6182,12 @@ msgid "License" msgstr "Licentia" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet es software libere: vos pote redistribuer lo e/o modificar lo sub " "le conditiones del GNU Affero General Public License como publicate per le " @@ -6178,11 +6195,12 @@ msgstr "" "election) omne version plus recente. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Iste programma es distribuite in le sperantia que illo essera utile, ma SIN " "ALCUN GARANTIA; sin mesmo le garantia implicite de COMMERCIABILITATE o de " @@ -6841,19 +6859,10 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() non implementate." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Initio" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Initio" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7663,13 +7672,6 @@ msgctxt "MENU" msgid "Public" msgstr "Public" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Gruppos" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7892,6 +7894,11 @@ msgstr "Vider totes" msgid "See all groups you belong to." msgstr "Vider tote le gruppos al quales tu pertine." +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "Retornar in alto" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Iste pagina non es disponibile in un formato que tu accepta" @@ -8355,6 +8362,10 @@ msgstr "" #. 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. +#, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s ha adherite a tu gruppo %2$s in %3$s" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8651,9 +8662,8 @@ msgstr "in contexto" msgid "Repeated by" msgstr "Repetite per" -#, fuzzy msgid " " -msgstr ", " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice." @@ -9112,21 +9122,6 @@ msgstr "Cercar in contento de notas" msgid "Find groups on this site" msgstr "Cercar gruppos in iste sito" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Adjuta" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "A proposito" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9147,17 +9142,6 @@ msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Contacto" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Insignia" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Section sin titulo" @@ -9241,11 +9225,11 @@ msgstr "Applicationes autorisate connectite" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Interfacie ancian" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" -msgstr "" +msgstr "Adjustamentos de interfacie pro usatores del vetule maniera" #. TRANS: Title of form to silence a user. msgctxt "TITLE" @@ -9466,7 +9450,7 @@ msgstr "%1$s e %2$s" #. TRANS: List message for notice favoured by logged in user. msgctxt "FAVELIST" msgid "You like this." -msgstr "Isto te place." +msgstr "Tu apprecia isto." #. TRANS: List message for when more than 4 people like something. #. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. @@ -9474,8 +9458,8 @@ msgstr "Isto te place." #, php-format msgid "%%s and %d others like this." msgid_plural "%%s and %d others like this." -msgstr[0] "Isto place a %%s e a %d alteres." -msgstr[1] "Isto place a %%s e a %d alteres." +msgstr[0] "%%s e %d alteres apprecia isto." +msgstr[1] "%%s e %d alteres apprecia isto." #. TRANS: List message for favoured notices. #. TRANS: %%s is a list of users liking a notice. @@ -9483,21 +9467,31 @@ msgstr[1] "Isto place a %%s e a %d alteres." #, php-format msgid "%%s likes this." msgid_plural "%%s like this." -msgstr[0] "%%s ama isto." -msgstr[1] "%%s ama isto." +msgstr[0] "%%s apprecia isto." +msgstr[1] "%%s apprecia isto." #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" -msgid "You have repeated this notice." -msgstr "Tu ha repetite iste nota." +msgid "You repeated this." +msgstr "Tu ha repetite isto." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Un persona ha repetite iste nota." -msgstr[1] "%d personas ha repetite iste nota." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "%%s e %d alteres ha repetite isto." +msgstr[1] "%%s e %d alteres ha repetite isto." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%%s ha repetite isto." +msgstr[1] "%%s ha repetite isto." #. TRANS: Form legend. #, php-format diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 1d86e1ba20..e54a9af61f 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -15,17 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -218,7 +219,6 @@ msgstr "Pagina inesistente." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -329,8 +329,6 @@ msgstr "Inviti" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amici" @@ -1997,6 +1995,81 @@ msgstr "Aggiungi ai preferiti" msgid "No such document \"%s\"." msgstr "Nessun documento \"%s\"" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Pagina web" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Aiuto" + +#, fuzzy +msgid "Getting started" +msgstr "Impostazioni salvate." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Informazioni" + +#, fuzzy +msgid "About this site" +msgstr "Sblocca questo utente" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Contattaci" + +#, fuzzy +msgid "Contact info" +msgstr "Contattaci" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Etichette" + +msgid "Using tags" +msgstr "" + +#. 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 "Gruppi" + +#, fuzzy +msgid "Using groups" +msgstr "Gruppi dell'utente" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4387,48 +4460,6 @@ msgstr "" "wiki/Microblogging) basato sul software libero [StatusNet](http://status." "net/)." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Insieme delle etichette" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -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 list cloud. -#. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format -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 list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "Scrivilo tu!" - -#. 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 list " -"someone!" -msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!" - -#. TRANS: DT element on on page with public list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Metodo delle API non trovato." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5179,7 +5210,7 @@ msgid "FOAF for %s group" msgstr "FOAF per il gruppo %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5198,14 +5229,14 @@ msgstr "" "altri! ([Maggiori informazioni](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** è un gruppo di utenti su %%%%site.name%%%%, un servizio di [microblog]" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " @@ -5330,11 +5361,6 @@ msgstr "Mostra tutto" msgid "Subscribers" msgstr "Abbonati" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Tutti gli abbonati" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5429,11 +5455,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** ha un account su %%%%site.name%%%%, un servizio di [microblog](http://" "it.wikipedia.org/wiki/Microblogging) basato sul software libero [StatusNet]" @@ -5966,13 +5992,12 @@ msgstr "Queste sono le persone seguite da %s." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Non stai seguendo nessuno, prova ad abbonarti a qualcuno che conosci. Prova " "a [cercare persone](%%action.peoplesearch%%), guarda tra i membri dei gruppi " @@ -6324,11 +6349,12 @@ msgid "License" msgstr "Licenza" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet è software libero: è possibile redistribuirlo o modificarlo nei " "termini della GNU Affero General Public License, come pubblicata dalla Free " @@ -6336,11 +6362,12 @@ msgstr "" "successiva. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Questo programma è distribuito nella speranza che possa essere utile, ma " "SENZA ALCUNA GARANZIA, senza anche la garanzia implicita di COMMERCIABILITÀ " @@ -7026,21 +7053,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() non implementata." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Pagina web" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Pagina web" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7889,14 +7906,6 @@ msgctxt "MENU" msgid "Public" msgstr "Pubblico" -#. 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 "Gruppi" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8128,6 +8137,11 @@ msgstr "Mostra tutto" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Questa pagina non è disponibile in un tipo di supporto che tu accetti" @@ -8615,6 +8629,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "L'utente %1$s è entrato nel gruppo %2$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9405,21 +9423,6 @@ msgstr "Trova contenuto dei messaggi" msgid "Find groups on this site" msgstr "Trova gruppi in questo sito" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Aiuto" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Informazioni" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9440,18 +9443,6 @@ msgctxt "MENU" msgid "Version" msgstr "Versione" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Contattaci" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Badge" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sezione senza nome" @@ -9786,16 +9777,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Hai già ripetuto quel messaggio." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Hai già ripetuto quel messaggio." -msgstr[1] "Hai già ripetuto quel messaggio." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Ripetuto a %s" +msgstr[1] "Ripetuto a %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 8c592e1560..736f9402d2 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -15,17 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -35,6 +36,9 @@ msgid "" "contact them at %2$s to make sure. Otherwise, wait a few minutes and try " "again." msgstr "" +"%1$s のデータベースは正しく応答しないため、サイトが正常に動作しませんが、サイ" +"ト管理者はおそらく問題を知っています。%2$s を確認し連絡することができます。そ" +"うでなければ、数分待ってから、やり直してください。" #. TRANS: Error message. msgid "An error occurred." @@ -168,6 +172,8 @@ msgid "" "There was a problem listing %s. The remote server is probably not responding " "correctly. Please try retrying later." msgstr "" +"%s リストに問題がありました。リモートサーバーはおそらく正しく応答していませ" +"ん。後で再試行してみてください。" #. TRANS: Title after adding a user to a list. msgctxt "TITLE" @@ -209,7 +215,6 @@ msgstr "そのようなページはありません。" #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -320,8 +325,6 @@ msgstr "招待を送信する" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s さんとその友人" @@ -1226,7 +1229,7 @@ msgstr "プロファイルを指定する必要があります。" #. TRANS: %s is a user nickname. #, php-format msgid "%s is not in the moderation queue for this group." -msgstr "" +msgstr "%s さんは、このグループのモデレーションキューではありません." #. TRANS: Client error displayed trying to approve/deny group membership. #. TRANS: Client error displayed trying to approve/deny subscription. @@ -1934,6 +1937,74 @@ msgstr "お気に入りに加える" msgid "No such document \"%s\"." msgstr "ドキュメント \"%s\" はありません。" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "ホーム" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "ヘルプ" + +msgid "Getting started" +msgstr "はじめに" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "" + +msgid "About this site" +msgstr "このサイトについて" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "よくある質問と回答" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "連絡先" + +msgid "Contact info" +msgstr "連絡先の情報" + +msgctxt "MENU" +msgid "Tags" +msgstr "タグ" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "グループ" + +msgid "Using groups" +msgstr "グループを使用する" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -2812,14 +2883,14 @@ msgstr "新しいユーザーを招待" #. TRANS: Followed by a bullet list. msgid "You are already subscribed to this user:" msgid_plural "You are already subscribed to these users:" -msgstr[0] "すでにこのユーザーをフォローしています:" +msgstr[0] "" #. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address). #. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address). #, php-format msgctxt "INVITE" msgid "%1$s (%2$s)" -msgstr "" +msgstr "%1$s (%2$s)" #. TRANS: Message displayed inviting users to use a StatusNet site while the invited user #. TRANS: already uses a this StatusNet site. Plural form is based on the number of @@ -2828,14 +2899,13 @@ msgid "This person is already a user and you were automatically subscribed:" msgid_plural "" "These people are already users and you were automatically subscribed to them:" msgstr[0] "" -"この方は既にユーザーです、そして、この方を自動的にフォローしました。:" #. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is #. TRANS: based on the number of invitations sent. Followed by a bullet list of #. TRANS: e-mail addresses to which invitations were sent. msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" -msgstr[0] "招待状を以下の方に送信しました:" +msgstr[0] "" #. TRANS: Generic message displayed after sending out one or more invitations to #. TRANS: people to join a StatusNet site. @@ -3335,9 +3405,8 @@ msgid "Not a supported data format." msgstr "サポートされていないデータ形式。" #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "IM 設定" +msgstr "古い学校のUIの設定" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." @@ -4228,46 +4297,6 @@ msgstr "" "net/) を基にした [ミニブログ](http://ja.wikipedia.org/wiki/%%E3%%83%%9F%%E3%%" "83%%8B%%E3%%83%%96%%E3%%83%%AD%%E3%%82%%B0) サービスです。" -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "パブリックリストクラウド" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "これらは %s 上の最大のリストです。" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "まだ誰も [リスト](%%doc.tags%%) 付きのつぶやきを投稿していません。" - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -msgid "Be the first to list someone!" -msgstr "リストの1番目になってください!" - -#. 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 list " -"someone!" -msgstr "" -"なぜ [アカウント登録](%%action.register%%) しないのですか、そして最初の投稿を" -"してください!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "クラウドリスト" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4520,7 +4549,7 @@ msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for all rights reserved. msgid "All rights reserved." -msgstr "" +msgstr "All rights reserved." #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. #, php-format @@ -4867,11 +4896,11 @@ msgstr "アプリケーション情報" #. TRANS: Field label on application page. msgid "Consumer key" -msgstr "" +msgstr "Consumer key" #. TRANS: Field label on application page. msgid "Consumer secret" -msgstr "" +msgstr "Consumer secret" #. TRANS: Field label on application page. msgid "Request token URL" @@ -5000,7 +5029,7 @@ msgid "FOAF for %s group" msgstr "%s グループの FOAF" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5019,14 +5048,14 @@ msgstr "" "([もっと読む](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** は %%site.name%% 上のユーザーグループです。フリーソフトウェアツール " "[StatusNet](http://status.net/) を基にした [ミニブログ]http://ja.wikipedia." @@ -5152,11 +5181,6 @@ msgstr "すべてを表示" msgid "Subscribers" msgstr "フォローされている" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "すべてのフォローされている" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5251,11 +5275,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** は %%site.name%% 上のアカウントです。フリーソフトウェアツール " "[StatusNet](http://status.net/) を基にした [ミニブログ]http://ja.wikipedia." @@ -5760,13 +5784,12 @@ msgstr "%s がつぶやきを聞いている人" #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "今、だれのつぶやきも聞いていないなら、あなたが知っている人々をフォローしてみ" "てください。[ユーザー検索](%%action.peoplesearch%%) を試してください。そし" @@ -6081,7 +6104,7 @@ msgstr "%1$s から %2$s 上の更新をしました!" #. TRANS: Title for version page. %s is the StatusNet version. #, php-format msgid "StatusNet %s" -msgstr "" +msgstr "StatusNet %s" #. TRANS: Content part of StatusNet version page. #. TRANS: %1$s is the engine name (StatusNet) and %2$s is the StatusNet version. @@ -6104,7 +6127,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6112,7 +6135,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6348,7 +6371,7 @@ msgstr "" #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" -msgstr "" +msgstr "%1$s (%2$s)" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). @@ -6718,7 +6741,7 @@ msgstr "\"%s\" ユーザーはいません。" #, php-format msgctxt "URLSTATUSREASON" msgid "%1$s %2$s %3$s" -msgstr "" +msgstr "%1$s %2$s %3$s" #. TRANS: Client exception thrown when there is no source attribute. msgid "Can't handle remote content yet." @@ -6749,19 +6772,10 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() は実装されていません。" #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "ホーム" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "ホーム" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -6864,7 +6878,7 @@ msgstr "API の使用は許可されていません。" #. TRANS: OAuth exception given when an incorrect access token was given for a user. msgid "Bad access token." -msgstr "" +msgstr "不正なアクセストークン" #. TRANS: OAuth exception given when no user was found for a given token (no token was found). msgid "No user for that token." @@ -7191,7 +7205,7 @@ msgstr[0] "" #, 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 @@ -7336,7 +7350,7 @@ msgstr "あなたはだれにもフォローされていません。" #. TRANS: hard coded space and a comma separated list of subscribed users. msgid "You are subscribed to this person:" msgid_plural "You are subscribed to these people:" -msgstr[0] "あなたはこの人にフォローされています:" +msgstr[0] "" #. TRANS: Text shown after requesting other users that are subscribed to a user #. TRANS: (followers) without having any subscribers. @@ -7348,7 +7362,7 @@ msgstr "誰もフォローしていません。" #. TRANS: hard coded space and a comma separated list of subscribing users. msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" -msgstr[0] "この人はあなたにフォローされています:" +msgstr[0] "" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. @@ -7360,7 +7374,7 @@ msgstr "あなたはどのグループのメンバーでもありません。" #. 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[0] "" #. TRANS: Header line of help text for commands. msgctxt "COMMANDHELP" @@ -7561,13 +7575,6 @@ msgctxt "MENU" msgid "Public" msgstr "パブリック" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "グループ" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7616,19 +7623,19 @@ msgstr "お気に入りのつぶやきの一覧に、このつぶやきを追加 #. 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: Feed type name. See http://activitystrea.ms/ msgid "Activity Streams" @@ -7783,6 +7790,11 @@ msgstr "全てを見る" msgid "See all groups you belong to." msgstr "所属する全てのグループを参照する。" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "このページはあなたが承認したメディアタイプでは利用できません。" @@ -8236,6 +8248,10 @@ msgstr "" #. 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. +#, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%3$s 上のグループ %2$s に %1$s さんが参加しました。" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8988,21 +9004,6 @@ msgstr "つぶやきの内容を探す" msgid "Find groups on this site" msgstr "このサイト上のグループを検索する" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "ヘルプ" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "よくある質問と回答" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9023,17 +9024,6 @@ msgctxt "MENU" msgid "Version" msgstr "バージョン" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "連絡先" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "バッジ" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "名称未設定のセクション" @@ -9117,7 +9107,7 @@ msgstr "承認された接続アプリケーション" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "古い学校" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" @@ -9351,14 +9341,23 @@ msgstr[0] "" #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" -msgid "You have repeated this notice." -msgstr "そのつぶやきをリピートしました。" +msgid "You repeated this." +msgstr "そのつぶやきをリピートしました" -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." msgstr[0] "" #. TRANS: Form legend. @@ -9417,7 +9416,7 @@ msgstr "%s の私の同僚" #. TRANS: Label for drop-down of potential addressees. msgctxt "LABEL" msgid "To:" -msgstr "" +msgstr "To:" #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private?" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 19596ebb38..6949ff4917 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:21+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -204,7 +205,6 @@ msgstr "ასეთი გვერდი არ არსებობს." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -315,8 +315,6 @@ msgstr "მოსაწვევეი" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr " %s და მეგობრები" @@ -1991,6 +1989,84 @@ msgstr "რჩეულებში დამატება" msgid "No such document \"%s\"." msgstr "ასეთი დოკუმენტი არ არის \"%s\"" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ვებ. გვერსი" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "დახმარება" + +#, fuzzy +msgid "Getting started" +msgstr "პარამეტრები შენახულია." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "საიტის შესახებ" + +#, fuzzy +msgid "About this site" +msgstr "მომხმარებლის ბლოკირების მოხსნა" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "ხდკ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "კონტაქტი" + +#, fuzzy +msgid "Contact info" +msgstr "კონტაქტი" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "სანიშნეები" + +msgid "Using tags" +msgstr "" + +#. 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 "ჯგუფები" + +#, fuzzy +msgid "Using groups" +msgstr "%s ჯგუფები" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4361,47 +4437,6 @@ msgstr "" "რს არის %%site.name%%, [მიკრო–ბლოგინგის](http://en.wikipedia.org/wiki/Micro-" "blogging) სერვისი, დაფუძნებული უფასო [StatusNet](http://status.net/) კოდზე." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "საჯარო სანიშნეების ღრუბელი." - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "ეს არის ყველაზე პოპულარული სანიშნეები %s–ზე " - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "ჯერჯერობით არავის დაუპოსტავს შეტყობინება [hashtag](%%doc.tags%%)–ით." - -#. 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 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 list " -"someone!" -msgstr "[დარეგისტრირდი](%%action.register%%) და დაპოსტე პირველმა!" - -#. TRANS: DT element on on page with public list cloud. -#, fuzzy -msgid "List cloud" -msgstr "API მეთოდი ვერ მოიძებნა." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5159,7 +5194,7 @@ msgid "FOAF for %s group" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5172,15 +5207,17 @@ msgid "" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" +"რს არის %%site.name%%, [მიკრო–ბლოგინგის](http://en.wikipedia.org/wiki/Micro-" +"blogging) სერვისი, დაფუძნებული უფასო [StatusNet](http://status.net/) კოდზე." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5304,11 +5341,6 @@ msgstr "" msgid "Subscribers" msgstr "გამომწერები" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "ყველა გამომწერი" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5396,12 +5428,14 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" +"რს არის %%site.name%%, [მიკრო–ბლოგინგის](http://en.wikipedia.org/wiki/Micro-" +"blogging) სერვისი, დაფუძნებული უფასო [StatusNet](http://status.net/) კოდზე." #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format @@ -5931,13 +5965,12 @@ msgstr "ეს არის ხალხი ვის შეტყობინ #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "თუ ჯერ არ უსმენთ არავის შეტყობიენბებს, სცადეთ გამოიწეროთ თქვენთვის " "საინტერესო ადამიანები. სცადეთ [ხალხის ძიება](%%action.peoplesearch%%), " @@ -6291,11 +6324,12 @@ msgid "License" msgstr "ლიცენზია" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet არის უფასო კოდი: თქვენ შეგიძლიათ მისი გავრცელება ან/და გადაკეთება " "GNU Affero ძირითადი საჯარო ლიცენზიის პირობების თანახმად, როგორც " @@ -6303,11 +6337,12 @@ msgstr "" "ნებისმიერი უფრო ახალი ვერსიით. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "ეს პროგრამა ვრცელდება იმ იმედით, რომ გამოსადეგი იქნება, მაგრამ არ იძლევა " "არანაირ გარანტიებს; არც თუნდაც პატარა გარანტიას მის გაყიდვადობაზე ან " @@ -6983,21 +7018,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() არ არის განხორციელებული." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "ვებ. გვერსი" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "ვებ. გვერსი" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7837,14 +7862,6 @@ msgctxt "MENU" msgid "Public" msgstr "საჯარო" -#. 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 "ჯგუფები" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8076,6 +8093,11 @@ msgstr "" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "ეს გვერდი მიუწვდომელია იმ მედია ფორმატში რომელსაც თქვენ იღებთ" @@ -8536,6 +8558,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s გაწევრიანდა ჯგუფში %2$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9330,23 +9356,6 @@ msgstr "მოძებნე შეტყობინებებში" msgid "Find groups on this site" msgstr "მოძებნე ჯგუფები ამ საიტზე" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "დახმარება" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "საიტის შესახებ" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "ხდკ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9371,19 +9380,6 @@ msgctxt "MENU" msgid "Version" msgstr "ვერსია" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "კონტაქტი" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "იარლიყი" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "უსათაურო სექცია" @@ -9720,15 +9716,24 @@ msgstr[0] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "ეს შეტყობინება უკვე გამეორებულია." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "თქვენ უკვე გაიმეორეთ ეს შეტყობინება." #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index f68a171444..097a4971c4 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:23+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -209,7 +210,6 @@ msgstr "해당 페이지가 없습니다." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -320,8 +320,6 @@ msgstr "초대" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s 및 친구들" @@ -1935,6 +1933,79 @@ msgstr "좋아하는 글로 추가" msgid "No such document \"%s\"." msgstr "그런 문서가 없습니다: \"%s\"" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "대문" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "도움말" + +#, fuzzy +msgid "Getting started" +msgstr "설정을 저장했습니다." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "정보" + +#, fuzzy +msgid "About this site" +msgstr "이 사용자 차단 해제" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "자주 묻는 질문" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "연락하기" + +#, fuzzy +msgid "Contact info" +msgstr "연락하기" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "태그" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "그룹" + +#, fuzzy +msgid "Using groups" +msgstr "사용자 그룹" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4221,45 +4292,6 @@ msgstr "" "net/) 소프트웨어를 사용하는 [마이크로 블로깅](http://en.wikipedia.org/wiki/" "Micro-blogging) 서비스입니다." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "공개 리스트 클라우드" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "다음은 %s에서 가장 인기 있는 리스트입니다." - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "아직 아무도 [리스트](%%doc.tags%%)가 없습니다." - -#. 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 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 list " -"someone!" -msgstr "" -"[계정을 등록해](%%action.register%%) 리스트에 넣는 첫번째 사람이 되세요!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "리스트 클라우드" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4987,7 +5019,7 @@ msgid "FOAF for %s group" msgstr "%s 그룹의 FOAF" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5005,14 +5037,14 @@ msgstr "" "help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** 그룹은 %%%%site.name%%%% 사이트의 사용자 그룹입니다. 이 사이트는 자유" "소프트웨어 [StatusNet](http://status.net/) 소프트웨어를 사용하는 [마이크로블" @@ -5137,11 +5169,6 @@ msgstr "모두 보기" msgid "Subscribers" msgstr "구독자" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "모든 구독자" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5237,11 +5264,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s**님이 %%site.name%% 사이트에 계정이 있습니다. 이 사이트는 자유소프트웨" "어 [StatusNet](http://status.net/) 소프트웨어를 사용하는 [마이크로 블로깅]" @@ -5744,13 +5771,12 @@ msgstr "다음은 %s님이 받고 있는 글을 쓰는 사람입니다." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "어느 누구의 글도 받지 않고 있고, 다른 사람을 구독하지도 않았습니다. [사람 검" "색](%%action.peoplesearch%%)을 사용해 관심 있는 그룹의 회원을 찾아 보시고, " @@ -6083,22 +6109,24 @@ msgid "License" msgstr "라이선스" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "이 프로그램은 자유 소프트웨어입니다. 소프트웨어의 피양도자는 자유 소프트웨어 " "재단이 공표한 GNU Affero 일반 공중 사용 허가서 3판 또는 그 이후 판을 임의로 " "선택해서, 그 규정에 따라 프로그램을 개작하거나 재배포할 수 있습니다." #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "이 프로그램은 유용하게 사용될 수 있으리라는 희망에서 배포되고 있지만, 특정한 " "목적에 맞는 적합성 여부나 판매용으로 사용할 수 있으리라는 묵시적인 보증을 포" @@ -6746,19 +6774,10 @@ msgid "saveSettings() not implemented." msgstr "saveSettings()이 구현되지 않았습니다." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "대문" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "대문" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7556,13 +7575,6 @@ msgctxt "MENU" msgid "Public" msgstr "공개" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "그룹" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7780,6 +7792,11 @@ msgstr "모두 보기" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "이 페이지는 귀하가 승인한 미디어 형식에서는 이용할 수 없습니다." @@ -8239,6 +8256,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s님이 %3$s 사이트의 내 그룹인 %2$s 그룹에 가입했습니다." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8995,21 +9016,6 @@ msgstr "글의 내용 찾기" msgid "Find groups on this site" msgstr "이 사이트에서 그룹 찾기" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "도움말" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "정보" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "자주 묻는 질문" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9030,17 +9036,6 @@ msgctxt "MENU" msgid "Version" msgstr "버전" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "연락하기" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "배지" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "제목없는 섹션" @@ -9354,17 +9349,27 @@ msgid_plural "%%s like this." msgstr[0] "" #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "이 글을 반복했습니다." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." msgstr[0] "" +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%s 사용자에게 반복" + #. TRANS: Form legend. #, php-format msgid "Search and list people" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 35d0db263d..d5fab5bb69 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -211,7 +212,6 @@ msgstr "Нема таква страница." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -321,8 +321,6 @@ msgstr "Испрати покани" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s и пријатели" @@ -1965,6 +1963,74 @@ msgstr "Додај во бендисани" msgid "No such document \"%s\"." msgstr "Нема документ со наслов „%s“." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Почетна" + +msgctxt "MENU" +msgid "Docs" +msgstr "Документи" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Помош" + +msgid "Getting started" +msgstr "Како да почнете" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "За нас" + +msgid "About this site" +msgstr "За ова мреж. место" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "ЧПП" + +msgid "Frequently asked questions" +msgstr "Често поставувани прашања" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Контакт" + +msgid "Contact info" +msgstr "Контактни информации" + +msgctxt "MENU" +msgid "Tags" +msgstr "Ознаки" + +msgid "Using tags" +msgstr "Употреба на ознаки" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Групи" + +msgid "Using groups" +msgstr "Употреба на групи" + +msgctxt "MENU" +msgid "API" +msgstr "API" + +msgid "RESTful API" +msgstr "RESTful API" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3226,7 +3292,7 @@ msgstr "Текстуално пребарување" #. TRANS: %1$s is the query, %2$s is the StatusNet site name. #, php-format msgid "Search results for \"%1$s\" on %2$s" -msgstr "Резултати од пребарувањето за „%1$s“ на %2$s" +msgstr "Резултати од пребарувањето на „%1$s“ на %2$s" #. TRANS: Text for logged in users making a query for notices without results. #. TRANS: This message contains a Markdown link. @@ -3387,13 +3453,13 @@ msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "Нагодувања за НП" +msgstr "Класични поставки за НП" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." msgstr "" +"Ако сакате да биде класично (како порано), можете да го наместите тука." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3401,13 +3467,13 @@ msgid "Settings saved." msgstr "Нагодувањата се зачувани" msgid "Only stream mode (no conversations) in timelines" -msgstr "" +msgstr "Само каналско емитување (без разговори) во хронологиите" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Прикаж. страницата за разговори како хиерархиски дрва" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Прикаж. прекари (не полни имиња) во хронологиите" #. TRANS: Button text to save a list. msgid "Save" @@ -4285,47 +4351,6 @@ msgstr "" "org/wiki/Микроблогирање) заснована на слободната програмска алатка " "[StatusNet](http://status.net/)." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "Облак од јавни списоци" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Ова се најпопуларните скорешни ознаки на %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Сè уште никој нема [наведено](%%doc.tags%%) никого на списокот." - -#. 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 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 list " -"someone!" -msgstr "" -"Зошто не [регистрирате сметка](%%action.register%%) и станете првиот што ќе " -"наведе некого!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Облак со списоци" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "Наведено е 1 лице" -msgstr[1] "Наведени се %d лица" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5074,7 +5099,7 @@ msgid "FOAF for %s group" msgstr "FOAF за групата %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5093,19 +5118,19 @@ msgstr "" "([Прочитајте повеќе](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** е корисничка група на %%%%site.name%%%%, мрежно место за " "[микроблогирање](http://mk.wikipedia.org/wiki/Микроблогирање) заснована на " "слободната програмска алатка [StatusNet](http://status.net/). Нејзините " -"членови си разменуваат кратки пораки за нивниот живот и интереси. " +"членови си разменуваат кратки пораки за нивниот живот и интереси." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5227,11 +5252,6 @@ msgstr "Прикажи ги сите" msgid "Subscribers" msgstr "Претплатници" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Сите претплатници" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5326,11 +5346,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** има сметка на %%%%site.name%%%%, мрежно место за [микроблогирање]" "(http://mk.wikipedia.org/wiki/Микроблогирање) заснована на слободната " @@ -5845,14 +5865,12 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Моментално не следите ничии забелешки. Претплатете се на луѓе кои ги " "познавате. Пробајте со [пребарување на луѓе](%%action.peoplesearch%%), " "побарајте луѓе во група која Ве интересира и меѓу нашите [избрани корисници]" -"(%%action.featured%%). Ако сте [корисник на Twitter](%%action.twittersettings" -"%%), тука можете автоматски да се претплатите на луѓе кои таму ги следите." +"(%%action.featured%%)." #. 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. @@ -6186,11 +6204,12 @@ msgid "License" msgstr "Лиценца" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet е слободен програм: можете да го редистрибуирате и/или менувате " "под условите на Општата јавна лиценца ГНУ Аферо според одредбите на " @@ -6198,11 +6217,12 @@ msgstr "" "Ваш избор) било која подоцнежна верзија. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Овој програм е дистрибуиран со надеж дека ќе биде од корист, но БЕЗ БИЛО " "КАКВА ГАРАНЦИЈА; дури и без подразбирливата гаранција за ПАЗАРНА ПРОДАЖНОСТ " @@ -6868,19 +6888,10 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() не е имплементирано." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Почетна" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Почетна" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7693,13 +7704,6 @@ msgctxt "MENU" msgid "Public" msgstr "Јавна" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Групи" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7922,6 +7926,11 @@ msgstr "Сите" msgid "See all groups you belong to." msgstr "Сите групи кајшто членувате." +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "Најгоре" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." @@ -8386,6 +8395,10 @@ msgstr "" #. 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. +#, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s се зачлени во Вашата група %2$s на %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8682,9 +8695,8 @@ msgstr "во контекст" msgid "Repeated by" msgstr "Повторено од" -#, fuzzy msgid " " -msgstr ", " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice." @@ -9142,21 +9154,6 @@ msgstr "Пронајдете содржини на забелешките" msgid "Find groups on this site" msgstr "Пронајдете групи на ова мрежно место" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Помош" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "За нас" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "ЧПП" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9177,17 +9174,6 @@ msgctxt "MENU" msgid "Version" msgstr "Верзија" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Контакт" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Значка" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Заглавие без наслов" @@ -9271,11 +9257,11 @@ msgstr "Овластени поврзани програми" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Класично" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" -msgstr "" +msgstr "Прилагодувања на НП за класични корисници" #. TRANS: Title of form to silence a user. msgctxt "TITLE" @@ -9510,16 +9496,26 @@ msgstr[1] "%%s го бендисуваат ова." #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Ја повторивте забелешкава." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Забелешкава ја има повторено едно лице." -msgstr[1] "Забелешкава ја имаат повторено %d лица." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "%%s и %d друг корисник го повториле ова." +msgstr[1] "%%s и %d други корисници го повториле ова." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%%s го повори ова." +msgstr[1] "%%s го повторија ова." #. TRANS: Form legend. #, php-format diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 028180ccd8..73a8714ab7 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:28+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:11:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -201,7 +202,6 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -306,8 +306,6 @@ msgstr "ക്ഷണങ്ങൾ" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s ഒപ്പം സുഹൃത്തുക്കളും" @@ -1921,6 +1919,84 @@ msgstr "പ്രിയങ്കരങ്ങളിലേയ്ക്ക് ച msgid "No such document \"%s\"." msgstr "\"%s\" എന്നൊരു രേഖ ഇല്ല." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "ഹോംപേജ്" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "സഹായം" + +#, fuzzy +msgid "Getting started" +msgstr "സജ്ജീകരണങ്ങൾ സേവ് ചെയ്തിരിക്കുന്നു." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "വിവരണം" + +#, fuzzy +msgid "About this site" +msgstr "ഈ ഉപയോക്താവിന്റെ തടയൽ നീക്കുക" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "പതിവുചോദ്യങ്ങൾ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "സമ്പർക്കം" + +#, fuzzy +msgid "Contact info" +msgstr "സമ്പർക്കം" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "റ്റാഗുകൾ" + +msgid "Using tags" +msgstr "" + +#. 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 "സംഘങ്ങൾ" + +#, fuzzy +msgid "Using groups" +msgstr "ഉപയോക്തൃ സംഘങ്ങൾ" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4216,50 +4292,6 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "സമീപകാലത്ത് %s സൈറ്റിൽ ഏറ്റവും ജനപ്രിയമായ റ്റാഗുകൾ" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "" - -#. 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 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 list " -"someone!" -msgstr "" -"എന്തുകൊണ്ട് [അംഗത്വമെടുക്കുകയും](%%action.register%%) പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ വ്യക്തിയാകുകയും " -"ചെയ്തുകൂട!" - -#. TRANS: DT element on on page with public list cloud. -#, fuzzy -msgid "List cloud" -msgstr "ഉപയോക്താവിനെ കണ്ടത്താനായില്ല." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -4974,7 +5006,7 @@ msgid "FOAF for %s group" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -4987,15 +5019,18 @@ msgid "" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" +"സ്വതന്ത്ര സോഫ്റ്റ്‌വേറായ [സ്റ്റാറ്റസ്‌നെറ്റ്](http://status.net/) ഉപകരണം ഉപയോഗിച്ച് [മൈക്രോ-" +"ബ്ലോഗിങ്](http://en.wikipedia.org/wiki/Micro-blogging) സേവനം നൽകുന്ന %%site.name%" +"% എന്ന സൈറ്റിൽ **%s** എന്നയാൾക്ക് അംഗത്വമുണ്ട്. " #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5118,11 +5153,6 @@ msgstr "കൂടുതൽ പ്രദർശിപ്പിക്കുക" msgid "Subscribers" msgstr "വരിക്കാർ" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "എല്ലാ വരിക്കാരും" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5215,11 +5245,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "സ്വതന്ത്ര സോഫ്റ്റ്‌വേറായ [സ്റ്റാറ്റസ്‌നെറ്റ്](http://status.net/) ഉപകരണം ഉപയോഗിച്ച് [മൈക്രോ-" "ബ്ലോഗിങ്](http://en.wikipedia.org/wiki/Micro-blogging) സേവനം നൽകുന്ന %%site.name%" @@ -5732,8 +5762,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6069,7 +6098,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6077,7 +6106,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6728,21 +6757,11 @@ msgid "saveSettings() not implemented." msgstr "" #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "ഹോംപേജ്" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "ഹോംപേജ്" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7568,14 +7587,6 @@ msgctxt "MENU" msgid "Public" msgstr "സാർവ്വജനികം" -#. 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 "സംഘങ്ങൾ" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -7804,6 +7815,11 @@ msgstr "കൂടുതൽ പ്രദർശിപ്പിക്കുക" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "" @@ -8189,6 +8205,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%2$s എന്ന സംഘത്തിൽ %1$s എന്ന ഉപയോക്താവ് ചേർന്നു." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8974,23 +8994,6 @@ msgstr "അറിയിപ്പുകളുടെ ഉള്ളടക്കം msgid "Find groups on this site" msgstr "ഈ സൈറ്റിലെ സംഘങ്ങൾ കണ്ടെത്തുക" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "സഹായം" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "വിവരണം" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "പതിവുചോദ്യങ്ങൾ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9014,18 +9017,6 @@ msgctxt "MENU" msgid "Version" msgstr "പതിപ്പ്" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "സമ്പർക്കം" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "തലക്കെട്ടില്ലാത്ത ഭാഗം" @@ -9351,16 +9342,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." -msgstr[1] "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%s എന്ന ഉപയോക്താവിനായി ആവർത്തിച്ചത്" +msgstr[1] "%s എന്ന ഉപയോക്താവിനായി ആവർത്തിച്ചത്" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 9789310614..8861a67b73 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -14,18 +14,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:32+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.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -211,7 +212,6 @@ msgstr "Ingen slik side." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -322,8 +322,6 @@ msgstr "Invitasjoner" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s og venner" @@ -1972,6 +1970,84 @@ msgstr "Legg til i favoritter" msgid "No such document \"%s\"." msgstr "Inget slikt dokument «%s»." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Hjemmesiden" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Hjelp" + +#, fuzzy +msgid "Getting started" +msgstr "Innstillinger lagret." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "Om" + +#, fuzzy +msgid "About this site" +msgstr "Opphev blokkering av denne brukeren" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "OSS/FAQ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Kontakt" + +#, fuzzy +msgid "Contact info" +msgstr "Kontakt" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Tagger" + +msgid "Using tags" +msgstr "" + +#. 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" + +#, fuzzy +msgid "Using groups" +msgstr "Brukergrupper" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4327,50 +4403,6 @@ msgstr "" "Mikroblogg)tjeneste basert på det frie programvareverktøyet [StatusNet]" "(http://status.net)." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Offentlig merkelappsky" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -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 list cloud. -#. TRANS: This message contains Markdown links in the form [description](link). -#, php-format -msgid "No one has [listed](%%doc.tags%%) anyone yet." -msgstr "" - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -#, fuzzy -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 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Bruker ikke funnet." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "1 person listet opp" -msgstr[1] "%d personer listet opp" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5127,7 +5159,7 @@ msgid "FOAF for %s group" msgstr "FOAF for gruppen %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5146,14 +5178,14 @@ msgstr "" "%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** er en brukergruppe på %%%%site.name%%%%, en [mikrobloggingstjeneste]" "(http://no.wikipedia.org/wiki/Mikroblogg) basert på det frie " @@ -5280,11 +5312,6 @@ msgstr "Vis alle" msgid "Subscribers" msgstr "Abonnenter" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Alle abonnenter" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5378,11 +5405,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** har en konto på %%%%site.name%%%%, en [mikrobloggingstjeneste](http://" "no.wikipedia.org/wiki/Mikroblogg) basert på det frie programvareverktøyet " @@ -5914,8 +5941,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6268,7 +6294,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6276,7 +6302,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6941,21 +6967,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() ikke implementert." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Hjemmesiden" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Hjemmesiden" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7259,7 +7275,7 @@ msgstr "Endring av passord er ikke tillatt" #. TRANS: Title for the form to block a user. msgid "Block" -msgstr "Blokkér" +msgstr "Blokker" #. TRANS: Description of the form to block a user. msgid "Block this user" @@ -7808,14 +7824,6 @@ msgctxt "MENU" msgid "Public" msgstr "Offentlig" -#. 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 @@ -8048,6 +8056,11 @@ msgstr "Vis alle" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Denne siden er ikke tilgjengelig i en mediatype du aksepterer" @@ -8529,6 +8542,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s ble med i gruppen %2$s" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9340,23 +9357,6 @@ msgstr "Finn innhold i notiser" msgid "Find groups on this site" msgstr "Finn grupper på dette nettstedet" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Hjelp" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "Om" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "OSS/FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9380,19 +9380,6 @@ msgctxt "MENU" msgid "Version" msgstr "Versjon" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Kontakt" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Knuff" - #. TRANS: Default title for section/sidebar widget. #, fuzzy msgid "Untitled section" @@ -9731,16 +9718,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Du har allerede gjentatt den notisen." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Allerede gjentatt den notisen." -msgstr[1] "Allerede gjentatt den notisen." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Gjentatt til %s" +msgstr[1] "Gjentatt til %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 25d37149d5..af8d988d6a 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -13,17 +13,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:30+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -216,7 +217,6 @@ msgstr "Deze pagina bestaat niet." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -287,7 +287,7 @@ msgid "" "something yourself." msgstr "" "Probeer te abonneren op meer gebruikers, [word lid van een groep](%%action." -"groups%%) of plaats zelf berichten." +"groups%%) of plaats zelf berichten." #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@". #. TRANS: This message contains Markdown links. Keep "](" together. @@ -328,8 +328,6 @@ msgstr "Uitnodiging verzenden" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s en vrienden" @@ -433,7 +431,7 @@ msgstr "Lidmaatschappen van %s" #. TRANS: Client error displayed when users try to block themselves. msgid "You cannot block yourself!" -msgstr "U kunt zichzelf niet blokkeren!" +msgstr "U kunt uzelf niet blokkeren!" #. TRANS: Server error displayed when blocking a user has failed. msgid "Block user failed." @@ -583,7 +581,7 @@ msgstr "" #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with an invalid nickname. msgid "Not a valid nickname." -msgstr "Ongeldige gebruikersnaam!" +msgstr "Ongeldige gebruikersnaam." #. TRANS: Client error in form for group creation. #. TRANS: API validation exception thrown when homepage URL does not validate. @@ -1084,14 +1082,14 @@ msgstr "Het was niet mogelijk een feed voor de lijst aan te maken - %s" #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname. #, php-format msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Updates over %2$s" +msgstr "%1$s / Berichten over %2$s" #. TRANS: Subtitle for timeline of most recent mentions of a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname, #. TRANS: %3$s is a user's full name. #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%1$s updates die een reactie zijn op updates van %2$s / %3$s." +msgstr "Berichten van %1$s die een reactie zijn op berichten van %2$s / %3$s." #. TRANS: Title for site timeline. %s is the StatusNet sitename. #. TRANS: Public RSS feed title. %s is the StatusNet site name. @@ -1102,7 +1100,7 @@ msgstr "%s publieke tijdlijn" #. TRANS: Subtitle for site timeline. %s is the StatusNet sitename. #, php-format msgid "%s updates from everyone!" -msgstr "%s updates van iedereen" +msgstr "Alle berichten van %s" #. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. msgid "Unimplemented." @@ -1145,7 +1143,7 @@ msgstr "Mededelingen met het label %s" #. TRANS: %1$s is the tag name, %2$s is the StatusNet sitename. #, php-format msgid "Updates tagged with %1$s on %2$s!" -msgstr "Updates met het label %1$s op %2$s!" +msgstr "Berichten met het label %1$s op %2$s!" #. TRANS: Client error displayed trying to add a notice to another user's timeline. msgid "Only the user can add to their own timeline." @@ -1994,6 +1992,74 @@ msgstr "Aan favorieten toevoegen" msgid "No such document \"%s\"." msgstr "Onbekend document \"%s\"." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Hoofdmenu" + +msgctxt "MENU" +msgid "Docs" +msgstr "Documentatie" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Help" + +msgid "Getting started" +msgstr "Aan de slag" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Over" + +msgid "About this site" +msgstr "Over deze site" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "Veel gestelde vragen" + +msgid "Frequently asked questions" +msgstr "Veelgestelde vragen" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Contact" + +msgid "Contact info" +msgstr "Contactgegevens" + +msgctxt "MENU" +msgid "Tags" +msgstr "Labels" + +msgid "Using tags" +msgstr "Labels gebruiken" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Groepen" + +msgid "Using groups" +msgstr "Groepen gebruiken" + +msgctxt "MENU" +msgid "API" +msgstr "API" + +msgid "RESTful API" +msgstr "RESTful API" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -2194,8 +2260,8 @@ msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -"Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox (en uw " -"ongewenste berichten/spam) voor een bericht met nadere instructies." +"Dit adres moet bevestigd worden. Controleer uw Postvak IN (en uw ongewenste " +"berichten/spam) voor een bericht met nadere instructies." #. TRANS: Instructions for e-mail address input form. Do not translate #. TRANS: "example.org". It is one of the domain names reserved for @@ -2225,7 +2291,7 @@ msgstr "Ik wil mededelingen per e-mail plaatsen." #. TRANS: Form instructions for incoming e-mail form in e-mail settings. #. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings. msgid "Send email to this address to post new notices." -msgstr "Stuur een email naar dit adres om een nieuw bericht te posten" +msgstr "Stuur een e-mail naar dit adres om een nieuw bericht te plaatsen." #. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned. #. TRANS: Instructions for incoming SMS e-mail address input form. @@ -2313,9 +2379,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 "" -"Een bevestigingscode is verzonden naar het e-mailadres dat u hebt " -"toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " -"hoe het te gebruiken." +"Er is een bevestigingscode verzonden naar het e-mailadres dat u hebt " +"toegevoegd. Controleer uw Postvak IN (en uw ongewenste berichten/spam) voor " +"de code en instructies hoe deze te gebruiken." #. TRANS: Message given canceling e-mail address confirmation that is not pending. #. TRANS: Message given canceling Instant Messaging address confirmation that is not pending. @@ -2411,7 +2477,7 @@ msgid "" "notice to your favorites!" msgstr "" "U kunt een [gebruiker aanmaken](%%action.register%%) en de eerste mededeling " -"voor de favorietenlijst plaatsen!" +"op uw favorietenlijst plaatsen!" #. TRANS: Title of RSS feed with favourite notices of a user. #. TRANS: %s is a user's nickname. @@ -2433,13 +2499,13 @@ msgstr "Updates op de favorietenlijst van %1$s op %2$s." #. TRANS: Title for featured users section. #. TRANS: Menu item title in search group navigation panel. msgid "Featured users" -msgstr "Nieuwe gebruikers" +msgstr "Uitgelichte gebruikers" #. TRANS: Page title for all but first page of featured users. #. TRANS: %d is the page number being displayed. #, php-format msgid "Featured users, page %d" -msgstr "Nieuwe gebruikers, pagina %d" +msgstr "Uitgelichte gebruikers, pagina %d" #. TRANS: Description on page displaying featured users. #, php-format @@ -2580,7 +2646,7 @@ msgstr "Selecteer een vierkant uit de afbeelding die het logo wordt." #. TRANS: Form success message after updating a group logo. msgid "Logo updated." -msgstr "Logo geactualiseerd." +msgstr "Het logo is bijgewerkt." #. TRANS: Form failure message after failing to update a group logo. msgid "Failed updating logo." @@ -3424,13 +3490,13 @@ msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "IM-instellingen" +msgstr "Oude gebruikersinterfaceinstellingen" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." msgstr "" +"Als u de voorkeur geeft aan de \"oude manier\", dan kunt u dat hier aangeven." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3438,13 +3504,13 @@ msgid "Settings saved." msgstr "De instellingen zijn opgeslagen." msgid "Only stream mode (no conversations) in timelines" -msgstr "" +msgstr "Alleen streammodus (geen gesprekken) in tijdlijnen" msgid "Show conversation page as hierarchical trees" -msgstr "" +msgstr "Gesprekkenpagina als hiërarchische boomstructuur weergeven" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Gebruikersnamen (geen volledige namen) weergeven in tijdlijnen" #. TRANS: Button text to save a list. msgid "Save" @@ -4318,47 +4384,6 @@ msgstr "" "Micro-blogging) gebaseerd op de Vrije Software [StatusNet](http://status." "net/)" -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "Publieke lijstwoordwolk" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Dit zijn de grootste lijsten op %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Niemand heeft nog iemand in een [lijst](%%doc.tags%%) opgenomen." - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -msgid "Be the first to list someone!" -msgstr "U kunt de eerste zijn die iemand in een lijst opneemt!" - -#. 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 list " -"someone!" -msgstr "" -"U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn " -"die iemand in een lijst opneemt!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Lijstwoordwolk" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "Eén persoon in lijst" -msgstr[1] "%d personen in de lijst" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4466,7 +4491,7 @@ msgstr "Herstellen" #. TRANS: Title for password recovery page in password reset mode. msgid "Reset password" -msgstr "Wachtwoord herstellen" +msgstr "Wachtwoord opnieuw instellen" #. TRANS: Title for password recovery page in password recover mode. msgid "Recover password" @@ -4733,7 +4758,7 @@ msgstr "Antwoorden aan %1$s, pagina %2$d" #. TRANS: %s is a user nickname. #, php-format msgid "Replies feed for %s (Activity Streams JSON)" -msgstr "!Antwoordenfeed voor %s (JSON-activiteitenstreams)" +msgstr "Antwoordenfeed voor %s (JSON-activiteitenstreams)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -5077,7 +5102,7 @@ msgstr "Dit is de manier om dat te delen wat u wilt." #. TRANS: Page title for first group page. %s is a group name. #, php-format msgid "%s group" -msgstr "%s groep" +msgstr "Groep %s" #. TRANS: Page title for any but first group page. #. TRANS: %1$s is a group name, $2$s is a page number. @@ -5088,7 +5113,7 @@ msgstr "Groep %1$s, pagina %2$d" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (Activity Streams JSON)" -msgstr "Mededelingenfeed voor groep %s (JSON-activiteitenstreams)" +msgstr "Mededelingenfeed voor de groep %s (JSON-activiteitenstreams)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5111,7 +5136,7 @@ msgid "FOAF for %s group" msgstr "Vriend van een vriend voor de groep %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5130,19 +5155,19 @@ msgstr "" "%%)" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]" "(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " "[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " -"over hun ervaringen en interesses. " +"over hun ervaringen en interesses." #. TRANS: Client error displayed requesting a single message that does not exist. msgid "No such message." @@ -5264,11 +5289,6 @@ msgstr "Allemaal weergeven" msgid "Subscribers" msgstr "Abonnees" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Alle abonnees" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5364,11 +5384,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** heeft een gebruiker op %%%%site.name%%%%, een [microblogdienst]" "(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " @@ -5464,7 +5484,7 @@ msgstr "" #. TRANS: Field label on site settings panel. msgid "Email" -msgstr "E-mail" +msgstr "E-mailadres" #. TRANS: Field title on site settings panel. msgid "Contact email address for your site." @@ -5887,8 +5907,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "U bent op dit moment op geen enkele gebruiker geabonneerd. Abonneer u op " "gebruikers die u kent. [Zoek gebruikers](%%action.peoplesearch%%), bekijk de " @@ -6225,11 +6244,12 @@ msgid "License" msgstr "Licentie" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet is vrije software. U kunt het herdistribueren en/of wijzigen in " "overeenstemming met de voorwaarden van de GNU Affero General Public License " @@ -6237,11 +6257,12 @@ msgstr "" "Licentie, of (naar uw keuze) elke latere versie. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Dit programma wordt verspreid in de hoop dat het bruikbaar is, maar ZONDER " "ENIGE GARANTIE; zelfs zonder de impliciete garantie van VERKOOPBAARHEID of " @@ -6924,19 +6945,10 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() is nog niet geïmplementeerd." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Hoofdmenu" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Hoofdmenu" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7757,13 +7769,6 @@ msgctxt "MENU" msgid "Public" msgstr "Openbaar" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Groepen" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7986,6 +7991,11 @@ msgstr "Allemaal bekijken" msgid "See all groups you belong to." msgstr "Alle groepen bekijken waartoe u behoort." +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "Terug naar boven" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Deze pagina is niet beschikbaar in een mediatype dat u accepteert" @@ -8452,6 +8462,10 @@ msgstr "" #. 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. +#, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s is lid geworden van uw groep %2$s op %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8747,9 +8761,8 @@ msgstr "in context" msgid "Repeated by" msgstr "Herhaald door" -#, fuzzy msgid " " -msgstr ", " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice." @@ -9207,21 +9220,6 @@ msgstr "Inhoud van mededelingen vinden" msgid "Find groups on this site" msgstr "Groepen op deze site vinden" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Help" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Over" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "Veel gestelde vragen" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9242,17 +9240,6 @@ msgctxt "MENU" msgid "Version" msgstr "Versie" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Contact" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Widget" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Naamloze sectie" @@ -9336,11 +9323,11 @@ msgstr "Geautoriseerde verbonden applicaties" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Oude manier" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" -msgstr "" +msgstr "Gebruikersinterface-instellingen voor \"oude\" gebruikers" #. TRANS: Title of form to silence a user. msgctxt "TITLE" @@ -9586,16 +9573,26 @@ msgstr[1] "%%s vinden dit leuk." #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "U hebt deze mededeling herhaald." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Een persoon heeft deze mededeling herhaald." -msgstr[1] "%d personen hebben deze mededeling herhaald." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "%%s en een andere gebruiker hebben dit herhaald." +msgstr[1] "%%s en %d andere gebruikers hebben dit herhaald." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%%s heeft dit herhaald." +msgstr[1] "%%s hebben dit herhaald." #. TRANS: Form legend. #, php-format diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index a3dae469ed..f79345c370 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -21,11 +21,12 @@ 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.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -206,7 +207,6 @@ msgstr "Nie ma takiej strony." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -317,8 +317,6 @@ msgstr "Wyślij zaproszenie" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "Użytkownik %s i przyjaciele" @@ -1975,6 +1973,84 @@ msgstr "Dodaj do ulubionych" msgid "No such document \"%s\"." msgstr "Nie ma takiego dokumentu \\\"%s\\\"." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Strona domowa" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Pomoc" + +#, fuzzy +msgid "Getting started" +msgstr "Zapisano ustawienia." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "O usłudze" + +#, fuzzy +msgid "About this site" +msgstr "Odblokuj tego użytkownika" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Kontakt" + +#, fuzzy +msgid "Contact info" +msgstr "Kontakt" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Znaczniki" + +msgid "Using tags" +msgstr "" + +#. 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 "Grupy" + +#, fuzzy +msgid "Using groups" +msgstr "Grupy użytkowników" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -2609,7 +2685,6 @@ msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualizacje od członków %1$s na %2$s." #. TRANS: Title for first page of the groups list. -#, fuzzy msgctxt "TITLE" msgid "Groups" msgstr "Grupy" @@ -2751,9 +2826,8 @@ msgid "Send me notices" msgstr "Wyślij wpis" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Post a notice when my status changes." -msgstr "Wyślij wpis, kiedy zmieni się mój stan na Jabber/GTalk." +msgstr "Wyślij powiadomienie gdy zmieni się mój status." #. TRANS: Checkbox label in IM preferences form. #, fuzzy @@ -3372,9 +3446,9 @@ msgstr "" #. TRANS: Server error displayed in oEmbed action when path not found. #. TRANS: %s is a path. -#, fuzzy, php-format +#, php-format msgid "\"%s\" not found." -msgstr "Nie odnaleziono strony." +msgstr "Nie znaleziono \"%s\"." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. @@ -3525,7 +3599,6 @@ msgid "6 or more characters." msgstr "6 lub więcej znaków." #. TRANS: Field label on page where to change password. In this field the new password should be typed a second time. -#, fuzzy msgctxt "LABEL" msgid "Confirm" msgstr "Potwierdź" @@ -3733,7 +3806,6 @@ msgid "Directory where attachments are located." msgstr "Katalog, w którym położone są załączniki." #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "SSL" msgstr "SSL" @@ -3764,9 +3836,8 @@ msgid "Server to direct SSL requests to." msgstr "Serwer do przekierowywania żądań SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -#, fuzzy msgid "Save path settings." -msgstr "Zapisz ustawienia witryny" +msgstr "Zapisz ustawienia ścieżki." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3864,9 +3935,8 @@ msgid "You cannot view others' private lists" msgstr "" #. TRANS: Mode selector label. -#, fuzzy msgid "Mode" -msgstr "Moderuj" +msgstr "Tryb" #. TRANS: Link text to show lists for user %s. #, fuzzy, php-format @@ -3883,7 +3953,6 @@ msgid "Show private tags." msgstr "" #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" msgstr "Publiczny" @@ -4017,9 +4086,8 @@ msgid "You cannot administer plugins." msgstr "Nie można usuwać użytkowników." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. -#, fuzzy msgid "No such plugin." -msgstr "Nie ma takiej strony." +msgstr "Nie ma takiej wtyczki." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" @@ -4056,10 +4124,9 @@ msgid "Unidentified field %s." msgstr "" #. TRANS: Page title. -#, fuzzy msgctxt "TITLE" msgid "Search results" -msgstr "Przeszukaj witrynę" +msgstr "Wyniki wyszukiwania" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." @@ -4166,9 +4233,8 @@ msgid "Language" msgstr "Język" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#, fuzzy msgid "Preferred language." -msgstr "Preferowany język" +msgstr "Preferowany język." #. TRANS: Dropdownlist label in form for profile settings. msgid "Timezone" @@ -4186,9 +4252,8 @@ msgstr "" "Automatycznie subskrybuj każdego, kto mnie subskrybuje (najlepsze dla botów)" #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. -#, fuzzy msgid "Subscription policy" -msgstr "Subskrypcje" +msgstr "Polityka subskrypcji" #. TRANS: Dropdown field option for following policy. #, fuzzy @@ -4345,52 +4410,6 @@ 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 list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Publiczna chmura znaczników" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -msgid "These are largest lists on %s" -msgstr "To są najpopularniejsze ostatnie znaczniki w witrynie %s" - -#. 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 [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 list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "Zostań pierwszym, który go wyśle." - -#. 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Nie odnaleziono strony." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -4560,9 +4579,9 @@ msgstr "Brak parametru identyfikatora." #. TRANS: Client exception thrown when an invalid ID parameter was provided for a file. #. TRANS: %d is the provided ID for which the file is not present (number). -#, fuzzy, php-format +#, php-format msgid "No such file \"%d\"." -msgstr "Nie ma takiego pliku." +msgstr "Nie ma takiego pliku: \"%d\"." #. TRANS: Client error displayed when trying to register to an invite-only site without an invitation. msgid "Sorry, only invited people can register." @@ -4577,10 +4596,9 @@ msgid "Registration successful" msgstr "Rejestracja powiodła się" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" -msgstr "Zarejestruj się" +msgstr "Rejestracja" #. TRANS: Client error displayed when trying to register to a closed site. msgid "Registration not allowed." @@ -5149,7 +5167,7 @@ msgid "FOAF for %s group" msgstr "FOAF dla grupy %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5168,14 +5186,14 @@ msgstr "" "([Przeczytaj więcej](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " "[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " @@ -5305,11 +5323,6 @@ msgstr "Wyświetl więcej" msgid "Subscribers" msgstr "Subskrybenci" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Wszyscy subskrybenci" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5405,11 +5418,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" "pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" @@ -5939,13 +5952,12 @@ msgstr "Osoby, których wpisy obserwuje użytkownik %s." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Nie obserwujesz teraz wpisów innych użytkowników. Spróbuj subskrybować " "osoby, które znasz. Spróbuj [wyszukać kogoś](%%action.peoplesearch%%), " @@ -6295,11 +6307,12 @@ msgid "License" msgstr "Licencja" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "Program StatusNet jest wolnym oprogramowaniem; można go rozprowadzać dalej i/" "lub modyfikować na warunkach Powszechnej Licencji Publicznej Affero GNU, " @@ -6307,11 +6320,12 @@ msgstr "" "według wersji trzeciej tej Licencji lub którejś z późniejszych wersji. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Niniejszy program rozpowszechniany jest z nadzieją, iż będzie on użyteczny - " "jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji PRZYDATNOŚCI " @@ -7005,21 +7019,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() nie jest zaimplementowane." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Strona domowa" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Strona domowa" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7867,14 +7871,6 @@ msgctxt "MENU" msgid "Public" msgstr "Publiczny" -#. 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 "Grupy" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8108,6 +8104,11 @@ msgstr "Zobacz wszystko" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Ta strona jest niedostępna dla akceptowanego typu medium" @@ -8594,6 +8595,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "Użytkownik %1$s dołączył do grupy %2$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9388,23 +9393,6 @@ msgstr "Przeszukaj zawartość wpisów" msgid "Find groups on this site" msgstr "Znajdź grupy na tej witrynie" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Pomoc" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "O usłudze" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9429,19 +9417,6 @@ msgctxt "MENU" msgid "Version" msgstr "Wersja" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Kontakt" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Odznaka" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Sekcja bez nazwy" @@ -9786,17 +9761,28 @@ msgstr[2] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Już powtórzono ten wpis." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Już powtórzono ten wpis." -msgstr[1] "Już powtórzono ten wpis." -msgstr[2] "Już powtórzono ten wpis." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Powtórzone dla %s" +msgstr[1] "Powtórzone dla %s" +msgstr[2] "Powtórzone dla %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 5179e652c0..cfba028579 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -19,17 +19,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:36+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -218,7 +219,6 @@ msgstr "Página não foi encontrada." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -330,8 +330,6 @@ msgstr "Convites" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amigos" @@ -1974,6 +1972,84 @@ msgstr "Adicionar às favoritas" msgid "No such document \"%s\"." msgstr "Documento \"%s\" não foi encontrado." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Página pessoal" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Ajuda" + +#, fuzzy +msgid "Getting started" +msgstr "Configurações gravadas." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "Sobre" + +#, fuzzy +msgid "About this site" +msgstr "Desbloquear este utilizador" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Contacto" + +#, fuzzy +msgid "Contact info" +msgstr "Contacto" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Categorias" + +msgid "Using tags" +msgstr "" + +#. 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 "Grupos" + +#, fuzzy +msgid "Using groups" +msgstr "Grupos" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4348,50 +4424,6 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) baseado no programa de Software Livre " "[StatusNet](http://status.net/)." -#. TRANS: Title for page with public list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Nuvem de categorias pública" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -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 list cloud. -#. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format -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 list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "Seja a primeira pessoa a publicar uma!" - -#. 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "Utilizador não encontrado." - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, fuzzy, php-format msgid "%s updates from everyone." @@ -5157,7 +5189,7 @@ msgid "FOAF for %s group" msgstr "FOAF do grupo %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5176,14 +5208,14 @@ msgstr "" "muitos mais! ([Saber mais](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** é um grupo de utilizadores no site %%%%site.name%%%%, um serviço de " "[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado no " @@ -5312,11 +5344,6 @@ msgstr "Mostrar mais" msgid "Subscribers" msgstr "Subscritores" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Todos os subscritores" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5411,11 +5438,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** tem uma conta no site %%%%site.name%%%%, um serviço de [microblogues]" "(http://en.wikipedia.org/wiki/Micro-blogging) baseado no programa de " @@ -5947,13 +5974,12 @@ msgstr "Estas são as pessoas cujas notas %s está a escutar." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Neste momento, não está a escutar as notas de ninguém. Tente subscrever " "pessoas que conhece. Tente a [pesquisa de pessoas](%%action.peoplesearch%%), " @@ -6306,11 +6332,12 @@ msgid "License" msgstr "Licença" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "O StatusNet é software livre: pode ser distribuído e/ou modificado nos " "termos da licença GNU Affero General Public License publicada pela Free " @@ -6318,11 +6345,12 @@ msgstr "" "qualquer versão posterior. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Este programa é distribuído na esperança de que venha a ser útil, mas SEM " "QUALQUER GARANTIA. Consulte a GNU Affero General Public License para mais " @@ -7010,21 +7038,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Página pessoal" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Página pessoal" - #. TRANS: Header in administrator navigation panel. #, fuzzy msgctxt "HEADER" @@ -7863,14 +7881,6 @@ msgctxt "MENU" msgid "Public" msgstr "Público" -#. 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 "Grupos" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -8103,6 +8113,11 @@ msgstr "Mostrar mais" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Esta página não está disponível num formato que você aceite" @@ -8588,6 +8603,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s juntou-se ao grupo %2$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9388,23 +9407,6 @@ msgstr "Procurar no conteúdo das notas" msgid "Find groups on this site" msgstr "Procurar grupos neste site" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Ajuda" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "Sobre" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9429,19 +9431,6 @@ msgctxt "MENU" msgid "Version" msgstr "Versão" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Contacto" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Emblema" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Secção sem título" @@ -9786,16 +9775,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Já repetiu essa nota." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Já repetiu essa nota." -msgstr[1] "Já repetiu essa nota." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Repetida para %s" +msgstr[1] "Repetida para %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 97d69bcd17..712e0ea175 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,18 +16,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:38+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -218,7 +219,6 @@ msgstr "Esta página não existe." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -332,8 +332,6 @@ msgstr "Convites" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s e amigos" @@ -1990,6 +1988,83 @@ msgstr "Adicionar às favoritas" msgid "No such document \"%s\"." msgstr "O documento \"%s\" não existe." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#, fuzzy +msgctxt "MENU" +msgid "Home" +msgstr "Site" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Ajuda" + +#, fuzzy +msgid "Getting started" +msgstr "As configurações foram salvas." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#, fuzzy +msgctxt "MENU" +msgid "About" +msgstr "Sobre" + +#, fuzzy +msgid "About this site" +msgstr "Desbloquear este usuário" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#, fuzzy +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#, fuzzy +msgctxt "MENU" +msgid "Contact" +msgstr "Contato" + +#, fuzzy +msgid "Contact info" +msgstr "Contato" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Etiquetas" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Grupos" + +#, fuzzy +msgid "Using groups" +msgstr "Grupos de usuário" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4317,51 +4392,6 @@ 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 list cloud. -#, fuzzy -msgid "Public list cloud" -msgstr "Nuvem de etiquetas públicas" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format -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 list cloud. -#. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format -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 list cloud for logged in users. -#, fuzzy -msgid "Be the first to list someone!" -msgstr "Seja o primeiro a publicar uma!" - -#. 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 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 list cloud. -#, fuzzy -msgid "List cloud" -msgstr "O método da API não foi encontrado!" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5111,7 +5141,7 @@ msgid "FOAF for %s group" msgstr "FOAF para o grupo %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5130,14 +5160,14 @@ msgstr "" "help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." 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 " @@ -5265,11 +5295,6 @@ msgstr "Exibir todas" msgid "Subscribers" msgstr "Assinantes" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Todos os assinantes" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5366,11 +5391,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** tem uma conta no %%%%site.name%%%%, um serviço de [microblog](http://" "pt.wikipedia.org/wiki/Micro-blogging) baseado no software livre [StatusNet]" @@ -5878,13 +5903,12 @@ msgstr "Estas são as pessoas cujas mensagens %s acompanha." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Você não está acompanhando as mensagens de ninguém. Experimente assinar " "algumas pessoas que você conhece. Você pode [procurar por pessoas](%%action." @@ -6233,11 +6257,12 @@ msgid "License" msgstr "Licença" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet é um software livre: você pode redistribui-lo e/ou modificá-lo sob " "os termos da GNU Affero General Public License, conforme publicado pela Free " @@ -6245,11 +6270,12 @@ msgstr "" "versão posterior. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Este programa é distribuído na esperança de ser útil, mas NÃO POSSUI " "QUALQUER GARANTIA, nem mesmo a garantia implícita de COMERCIALIZAÇÃO ou " @@ -6910,21 +6936,11 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. #, fuzzy msgctxt "HEADER" msgid "Home" msgstr "Site" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#, fuzzy -msgctxt "MENU" -msgid "Home" -msgstr "Site" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7740,13 +7756,6 @@ msgctxt "MENU" msgid "Public" msgstr "Público" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Grupos" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #, fuzzy @@ -7977,6 +7986,11 @@ msgstr "Exibir todas" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Esta página não está disponível em um tipo de mídia que você aceita" @@ -8445,6 +8459,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s entrou no seu grupo %2$s no %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9233,23 +9251,6 @@ msgstr "Encontre conteúdo de mensagens" msgid "Find groups on this site" msgstr "Encontre grupos neste site" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Ajuda" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#, fuzzy -msgctxt "MENU" -msgid "About" -msgstr "Sobre" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #, fuzzy msgctxt "MENU" @@ -9274,19 +9275,6 @@ msgctxt "MENU" msgid "Version" msgstr "Versão" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#, fuzzy -msgctxt "MENU" -msgid "Contact" -msgstr "Contato" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy -msgctxt "MENU" -msgid "Badge" -msgstr "Mini-aplicativo" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Seção sem título" @@ -9627,16 +9615,26 @@ msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. #, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Você já repetiu essa mensagem." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Você já repetiu essa mensagem." -msgstr[1] "Você já repetiu essa mensagem." +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Repetida para %s" +msgstr[1] "Repetida para %s" #. TRANS: Form legend. #, fuzzy, php-format diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index d119239c92..af4cb9949a 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -19,18 +19,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:40+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -220,7 +221,6 @@ msgstr "Нет такой страницы." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -329,8 +329,6 @@ msgstr "Отправить приглашение" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s и друзья" @@ -1989,6 +1987,74 @@ msgstr "Добавить в любимые" msgid "No such document \"%s\"." msgstr "Нет такого документа «%s»." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Главная" + +msgctxt "MENU" +msgid "Docs" +msgstr "Документация" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Помощь" + +msgid "Getting started" +msgstr "Начало работы" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "О сайте" + +msgid "About this site" +msgstr "Об этом сайте" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "Часто задаваемые вопросы" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Контактная информация" + +msgid "Contact info" +msgstr "Контактная информация" + +msgctxt "MENU" +msgid "Tags" +msgstr "Теги" + +msgid "Using tags" +msgstr "С помощью тегов" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Группы" + +msgid "Using groups" +msgstr "Используя группы" + +msgctxt "MENU" +msgid "API" +msgstr "API" + +msgid "RESTful API" +msgstr "RESTful API" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3418,9 +3484,8 @@ msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." #. TRANS: Page title for profile settings. -#, fuzzy msgid "Old school UI settings" -msgstr "IM-установки" +msgstr "Старые параметры настройки UI" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." @@ -4316,48 +4381,6 @@ msgstr "" "Микроблоггинг), созданный с использованием свободного программного " "обеспечения [StatusNet](http://status.net/)." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "Облако открытых списков" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Самые большие списки на %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Пока никто никого не добавлял в [списки](%%doc.tags%%)." - -#. 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 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 list " -"someone!" -msgstr "" -"Почему бы не [зарегистрироваться](%%action.register%%) и не создать новый " -"список?" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Облако списков" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "%d человек в списке" -msgstr[1] "%d человека в списке" -msgstr[2] "%d человек в списке" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5102,7 +5125,7 @@ msgid "FOAF for %s group" msgstr "FOAF для группы %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5121,14 +5144,14 @@ msgstr "" "других возможностей! ([Читать далее](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** — группа на %%%%site.name%%%%, сервисе [микроблоггинга](http://ru." "wikipedia.org/wiki/Микроблоггинг), основанном на свободном программном " @@ -5253,11 +5276,6 @@ msgstr "Показать всех" msgid "Subscribers" msgstr "Подписчики" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Все подписчики" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5353,11 +5371,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** является зарегистрированным участником %%%%site.name%%%% — сайта для " "[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " @@ -5865,13 +5883,12 @@ msgstr "Это пользователи, записи которых читае #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Вы сейчас не следите ни за чьими-либо записями; попробуйте подписаться на " "знакомых вам людей. Попробуйте использовать [поиск людей](%%action." @@ -6211,11 +6228,12 @@ msgid "License" msgstr "Лицензия" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet — свободное программное обеспечение: вы можете распространять его " "и/или модифицировать в соответствии с условиями GNU Affero General Public " @@ -6223,11 +6241,12 @@ msgstr "" "(на выбор) под любой более поздней версией. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Данная программа распространяется в надежде, что она будет полезной, но БЕЗ " "ВСЯКОЙ ГАРАНТИИ; в том числе без вытекающей гарантии ТОВАРНОЙ ПРИГОДНОСТИ " @@ -6894,19 +6913,10 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() не реализована." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Главная" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Главная" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7728,13 +7738,6 @@ msgctxt "MENU" msgid "Public" msgstr "Общее" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Группы" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7964,6 +7967,11 @@ msgstr "Показать все" msgid "See all groups you belong to." msgstr "Показать все группы, в которых вы находитесь." +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Страница недоступна для того типа, который Вы задействовали." @@ -8431,6 +8439,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s присоединился к вашей группе %2$s на %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8728,9 +8740,8 @@ msgstr "переписка" msgid "Repeated by" msgstr "Повторено" -#, fuzzy msgid " " -msgstr ", " +msgstr "" #. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice." @@ -9188,21 +9199,6 @@ msgstr "Найти запись по содержимому" msgid "Find groups on this site" msgstr "Найти группы на этом сайте" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Помощь" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "О сайте" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9223,17 +9219,6 @@ msgctxt "MENU" msgid "Version" msgstr "Версия" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Контактная информация" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Бедж" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Секция без названия" @@ -9559,18 +9544,30 @@ msgstr[1] "Это нравится %%s." msgstr[2] "Это нравится %%s." #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Вы уже повторили эту запись." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. -#, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Запись повторена %d пользователем." -msgstr[1] "Запись повторена %d пользователями." -msgstr[2] "Запись повторена %d пользователями." +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, fuzzy, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "Понравилось %%s и ещё %d пользователю." +msgstr[1] "Понравилось %%s и ещё %d пользователям." +msgstr[2] "Понравилось %%s и ещё %d пользователям." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Это нравится %%s." +msgstr[1] "Это нравится %%s." +msgstr[2] "Это нравится %%s." #. TRANS: Form legend. #, php-format diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 604747a912..e59d4fc9df 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,7 +18,7 @@ msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #. TRANS: Database error message. -#: index.php:110 +#: index.php:118 #, php-format msgid "" "The database for %1$s is not responding correctly, so the site will not work " @@ -28,25 +28,25 @@ msgid "" msgstr "" #. TRANS: Error message. -#: index.php:129 +#: index.php:137 msgid "An error occurred." msgstr "" #. TRANS: Error message displayed when there is no StatusNet configuration file. -#: index.php:262 +#: index.php:270 #, php-format msgid "" "No configuration file found. Try running the installation program first." msgstr "" #. TRANS: Error message displayed when trying to access a non-existing page. -#: index.php:293 +#: index.php:301 msgid "Unknown page" msgstr "" #. TRANS: Error message displayed when trying to perform an undefined action. #. TRANS: Title for password recovery page when an unknown action has been specified. -#: index.php:348 actions/recoverpassword.php:232 +#: index.php:356 actions/recoverpassword.php:232 msgid "Unknown action" msgstr "" @@ -73,7 +73,7 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #. TRANS: Checkbox label to show private tags. #. TRANS: Checkbox field label on group edit form to mark a group private. -#: actions/accessadminpanel.php:157 actions/peopletagsbyuser.php:185 +#: actions/accessadminpanel.php:157 actions/peopletagsbyuser.php:190 #: lib/groupeditform.php:206 msgctxt "LABEL" msgid "Private" @@ -127,7 +127,7 @@ msgstr "" #: actions/pathsadminpanel.php:454 actions/profilesettings.php:215 #: actions/sessionsadminpanel.php:202 actions/siteadminpanel.php:373 #: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:204 -#: actions/snapshotadminpanel.php:252 actions/subscriptions.php:251 +#: actions/snapshotadminpanel.php:252 actions/subscriptions.php:249 #: actions/tagprofile.php:169 actions/urlsettings.php:152 #: actions/useradminpanel.php:300 lib/applicationeditform.php:355 #: lib/groupeditform.php:225 lib/peopletags.php:146 @@ -171,7 +171,7 @@ msgstr "" #: actions/editpeopletag.php:69 actions/favor.php:62 actions/groupblock.php:60 #: actions/groupunblock.php:60 actions/logout.php:69 actions/makeadmin.php:62 #: actions/newmessage.php:89 actions/newnotice.php:87 actions/nudge.php:64 -#: actions/peopletagautocomplete.php:57 actions/peopletagsbyuser.php:121 +#: actions/peopletagautocomplete.php:57 actions/peopletagsbyuser.php:126 #: actions/pluginenable.php:99 actions/profilecompletion.php:92 #: actions/removepeopletag.php:90 actions/subedit.php:33 #: actions/subscribe.php:98 actions/unsubscribe.php:52 @@ -196,10 +196,10 @@ 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. -#: actions/addpeopletag.php:110 actions/editpeopletag.php:109 -#: actions/peopletagged.php:96 actions/peopletagsubscribers.php:96 +#: actions/addpeopletag.php:110 actions/editpeopletag.php:113 +#: actions/peopletagged.php:101 actions/peopletagsubscribers.php:101 #: actions/profilecompletion.php:101 actions/profiletagbyid.php:67 -#: actions/removepeopletag.php:111 actions/showprofiletag.php:86 +#: actions/removepeopletag.php:111 actions/showprofiletag.php:90 #: actions/subscribepeopletag.php:95 actions/unsubscribepeopletag.php:96 msgid "No such list." msgstr "" @@ -230,7 +230,7 @@ msgstr "" #. TRANS: Server error when page not found (404) #. TRANS: Server error when page not found (404). #: actions/all.php:72 actions/public.php:110 actions/replies.php:96 -#: actions/showfavorites.php:140 actions/showprofiletag.php:100 +#: actions/showfavorites.php:140 actions/showprofiletag.php:104 #: actions/tag.php:54 msgid "No such page." msgstr "" @@ -264,7 +264,6 @@ msgstr "" #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -298,16 +297,16 @@ msgstr "" #: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78 #: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79 #: actions/avatarbynickname.php:79 actions/favoritesrss.php:72 -#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67 -#: actions/microsummary.php:63 actions/newmessage.php:119 actions/otp.php:78 -#: actions/peopletagged.php:87 actions/peopletagsbyuser.php:97 -#: actions/peopletagsforuser.php:79 actions/peopletagsubscribers.php:87 -#: actions/peopletagsubscriptions.php:81 actions/replies.php:72 -#: actions/repliesrss.php:38 actions/rsd.php:114 actions/showfavorites.php:106 -#: actions/showprofiletag.php:73 actions/showprofiletag.php:112 -#: actions/userbyid.php:75 actions/usergroups.php:95 actions/userrss.php:41 -#: actions/userxrd.php:61 lib/command.php:624 lib/galleryaction.php:61 -#: lib/mailbox.php:79 lib/profileaction.php:77 +#: actions/foaf.php:42 actions/foaf.php:61 actions/microsummary.php:63 +#: actions/newmessage.php:119 actions/otp.php:78 actions/peopletagged.php:92 +#: actions/peopletagsbyuser.php:102 actions/peopletagsforuser.php:84 +#: actions/peopletagsubscribers.php:92 actions/peopletagsubscriptions.php:86 +#: actions/replies.php:72 actions/repliesrss.php:38 actions/rsd.php:114 +#: actions/showfavorites.php:106 actions/showprofiletag.php:77 +#: actions/showprofiletag.php:116 actions/userbyid.php:75 +#: actions/usergroups.php:95 actions/userrss.php:41 actions/userxrd.php:61 +#: lib/command.php:624 lib/galleryaction.php:61 lib/mailbox.php:79 +#: lib/profileaction.php:77 msgid "No such user." msgstr "" @@ -326,7 +325,7 @@ msgstr "" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. -#: actions/all.php:116 actions/showprofiletag.php:182 +#: actions/all.php:116 actions/showprofiletag.php:186 #, php-format msgid "Feed for friends of %s (Activity Streams JSON)" msgstr "" @@ -340,7 +339,7 @@ msgstr "" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. -#: actions/all.php:133 actions/showprofiletag.php:193 +#: actions/all.php:133 actions/showprofiletag.php:197 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" @@ -404,11 +403,9 @@ msgstr "" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #: actions/allrss.php:110 actions/apitimelinefriends.php:209 #: actions/apitimelinehome.php:113 lib/adminpanelnav.php:74 -#: lib/personalgroupnav.php:77 lib/settingsnav.php:74 +#: lib/personalgroupnav.php:77 #, php-format msgid "%s and friends" msgstr "" @@ -502,11 +499,10 @@ msgstr "" #: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108 #: actions/avatarbynickname.php:85 actions/avatarsettings.php:108 #: actions/avatarsettings.php:194 actions/foaf.php:69 -#: actions/grouplogo.php:184 actions/hcard.php:75 -#: actions/peopletagsbyuser.php:105 actions/peopletagsforuser.php:87 -#: actions/peopletagsubscriptions.php:89 actions/replies.php:80 -#: actions/usergroups.php:103 actions/userrss.php:110 lib/galleryaction.php:69 -#: lib/profileaction.php:85 +#: actions/grouplogo.php:184 actions/peopletagsbyuser.php:110 +#: actions/peopletagsforuser.php:92 actions/peopletagsubscriptions.php:94 +#: actions/replies.php:80 actions/usergroups.php:103 actions/userrss.php:110 +#: lib/galleryaction.php:69 lib/profileaction.php:85 msgid "User has no profile." msgstr "" @@ -799,7 +795,7 @@ msgstr "" #. TRANS: %d is the maximum number of allowed characters. #: actions/apigroupcreate.php:201 actions/apigroupprofileupdate.php:301 #: actions/editapplication.php:203 actions/editgroup.php:214 -#: actions/editpeopletag.php:265 actions/newapplication.php:183 +#: actions/editpeopletag.php:269 actions/newapplication.php:183 #: actions/newgroup.php:158 #, php-format msgid "Description is too long (maximum %d character)." @@ -1981,7 +1977,7 @@ msgstr "" #. TRANS: Button label on the form to block a user from a group. #: actions/block.php:154 actions/deleteapplication.php:158 #: actions/deletegroup.php:220 actions/deletenotice.php:155 -#: actions/deleteuser.php:154 actions/editpeopletag.php:174 +#: actions/deleteuser.php:154 actions/editpeopletag.php:178 #: actions/groupblock.php:188 msgctxt "BUTTON" msgid "No" @@ -2001,7 +1997,7 @@ msgstr "" #. TRANS: Button text to repeat a notice on notice repeat form. #: actions/block.php:161 actions/deleteapplication.php:165 #: actions/deletegroup.php:227 actions/deletenotice.php:162 -#: actions/deleteuser.php:161 actions/editpeopletag.php:178 +#: actions/deleteuser.php:161 actions/editpeopletag.php:182 #: actions/groupblock.php:195 lib/repeatform.php:126 msgctxt "BUTTON" msgid "Yes" @@ -2265,7 +2261,7 @@ msgstr "" #. TRANS: Client error text when there is a problem with the session token. #: actions/deleteapplication.php:103 actions/editapplication.php:132 #: actions/newapplication.php:113 actions/showapplication.php:117 -#: lib/action.php:1475 +#: lib/action.php:1473 msgid "There was a problem with your session token." msgstr "" @@ -2424,6 +2420,92 @@ msgstr "" msgid "No such document \"%s\"." msgstr "" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +#: actions/doc.php:178 lib/adminpanelnav.php:71 lib/defaultlocalnav.php:60 +#: lib/homestubnav.php:55 lib/personalgroupnav.php:74 lib/settingsnav.php:63 +msgctxt "MENU" +msgid "Home" +msgstr "" + +#: actions/doc.php:181 +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +#: actions/doc.php:195 lib/secondarynav.php:56 +msgctxt "MENU" +msgid "Help" +msgstr "" + +#: actions/doc.php:196 +msgid "Getting started" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +#: actions/doc.php:200 lib/secondarynav.php:59 +msgctxt "MENU" +msgid "About" +msgstr "" + +#: actions/doc.php:201 +msgid "About this site" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +#: actions/doc.php:205 lib/secondarynav.php:62 +msgctxt "MENU" +msgid "FAQ" +msgstr "" + +#: actions/doc.php:206 +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +#: actions/doc.php:210 lib/secondarynav.php:81 +msgctxt "MENU" +msgid "Contact" +msgstr "" + +#: actions/doc.php:211 +msgid "Contact info" +msgstr "" + +#: actions/doc.php:215 +msgctxt "MENU" +msgid "Tags" +msgstr "" + +#: actions/doc.php:216 +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +#: actions/doc.php:220 lib/defaultlocalnav.php:71 lib/publicgroupnav.php:73 +#: lib/searchgroupnav.php:82 lib/subgroupnav.php:124 +msgctxt "MENU" +msgid "Groups" +msgstr "" + +#: actions/doc.php:221 +msgid "Using groups" +msgstr "" + +#: actions/doc.php:225 +msgctxt "MENU" +msgid "API" +msgstr "" + +#: actions/doc.php:226 +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. #: actions/editapplication.php:54 lib/applicationeditform.php:129 @@ -2543,7 +2625,7 @@ msgstr "" #. TRANS: Group edit form success message. #. TRANS: Edit list form success message. -#: actions/editgroup.php:306 actions/editpeopletag.php:322 +#: actions/editgroup.php:306 actions/editpeopletag.php:326 msgid "Options saved." msgstr "" @@ -2564,58 +2646,58 @@ msgid "Edit list %s" msgstr "" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. -#: actions/editpeopletag.php:99 +#: actions/editpeopletag.php:103 msgid "No tagger or ID." msgstr "" #. TRANS: Client error displayed when referring to non-local user. -#: actions/editpeopletag.php:116 +#: actions/editpeopletag.php:120 msgid "Not a local user." msgstr "" #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#: actions/editpeopletag.php:122 +#: actions/editpeopletag.php:126 msgid "You must be the creator of the tag to edit it." msgstr "" #. TRANS: Form instruction for edit list form. -#: actions/editpeopletag.php:219 +#: actions/editpeopletag.php:223 msgid "Use this form to edit the list." msgstr "" #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. -#: actions/editpeopletag.php:240 +#: actions/editpeopletag.php:244 msgid "Delete aborted." msgstr "" #. TRANS: Text in confirmation dialog for deleting a tag. -#: actions/editpeopletag.php:248 +#: actions/editpeopletag.php:252 msgid "" "Deleting this tag will permanantly remove all its subscription and " "membership records. Do you still want to continue?" msgstr "" #. TRANS: Form validation error displayed if a given tag is invalid. -#: actions/editpeopletag.php:254 +#: actions/editpeopletag.php:258 msgid "Invalid tag." msgstr "" #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. -#: actions/editpeopletag.php:259 +#: actions/editpeopletag.php:263 #, php-format msgid "You already have a tag named %s." msgstr "" #. TRANS: Text in confirmation dialog for setting a tag from public to private. -#: actions/editpeopletag.php:276 +#: actions/editpeopletag.php:280 msgid "" "Setting a public tag as private will permanently remove all the existing " "subscriptions to it. Do you still want to continue?" msgstr "" #. TRANS: Server error displayed when updating a list fails. -#: actions/editpeopletag.php:297 +#: actions/editpeopletag.php:301 msgid "Could not update list." msgstr "" @@ -2873,7 +2955,7 @@ msgstr "" #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. #. TRANS: Menu item title in search group navigation panel. -#: actions/favorited.php:65 lib/popularnoticesection.php:62 +#: actions/favorited.php:65 lib/popularnoticesection.php:65 #: lib/publicgroupnav.php:95 msgid "Popular notices" msgstr "" @@ -4513,28 +4595,28 @@ msgid "" msgstr "" #. TRANS: Client error displayed when a tagger is expected but not provided. -#: actions/peopletagged.php:79 actions/peopletagsubscribers.php:79 -#: actions/showprofiletag.php:65 +#: actions/peopletagged.php:84 actions/peopletagsubscribers.php:84 +#: actions/showprofiletag.php:69 msgid "No tagger." msgstr "" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#: actions/peopletagged.php:108 +#: actions/peopletagged.php:113 #, php-format msgid "People listed in %1$s by %2$s" msgstr "" #. 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. -#: actions/peopletagged.php:113 +#: actions/peopletagged.php:118 #, php-format msgid "People listed in %1$s by %2$s, page %3$d" msgstr "" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. -#: actions/peopletagged.php:192 actions/peopletagsubscribers.php:192 +#: actions/peopletagged.php:197 actions/peopletagsubscribers.php:197 msgid "Creator" msgstr "" @@ -4568,46 +4650,46 @@ msgid "Lists by %1$s, page %2$d" msgstr "" #. TRANS: Client error displayed when trying view another user's private lists. -#: actions/peopletagsbyuser.php:128 +#: actions/peopletagsbyuser.php:133 msgid "You cannot view others' private lists" msgstr "" #. TRANS: Mode selector label. -#: actions/peopletagsbyuser.php:154 +#: actions/peopletagsbyuser.php:159 msgid "Mode" msgstr "" #. TRANS: Link text to show lists for user %s. -#: actions/peopletagsbyuser.php:164 +#: actions/peopletagsbyuser.php:169 #, php-format msgid "Lists for %s" msgstr "" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. -#: actions/peopletagsbyuser.php:176 lib/galleryaction.php:138 +#: actions/peopletagsbyuser.php:181 lib/galleryaction.php:138 msgid "Select tag to filter" msgstr "" #. TRANS: Checkbox title. -#: actions/peopletagsbyuser.php:187 +#: actions/peopletagsbyuser.php:192 msgid "Show private tags." msgstr "" #. TRANS: Checkbox label to show public tags. -#: actions/peopletagsbyuser.php:189 +#: actions/peopletagsbyuser.php:194 msgctxt "LABEL" msgid "Public" msgstr "" #. TRANS: Checkbox title. -#: actions/peopletagsbyuser.php:191 +#: actions/peopletagsbyuser.php:196 msgid "Show public tags." msgstr "" #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. -#: actions/peopletagsbyuser.php:194 lib/galleryaction.php:145 +#: actions/peopletagsbyuser.php:199 lib/galleryaction.php:145 msgctxt "BUTTON" msgid "Go" msgstr "" @@ -4615,7 +4697,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. -#: actions/peopletagsbyuser.php:210 +#: actions/peopletagsbyuser.php:215 #, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" @@ -4628,7 +4710,7 @@ 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. -#: actions/peopletagsbyuser.php:273 +#: actions/peopletagsbyuser.php:278 #, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." msgstr "" @@ -4648,7 +4730,7 @@ msgstr "" #. 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. -#: actions/peopletagsforuser.php:108 +#: actions/peopletagsforuser.php:113 #, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" @@ -4661,21 +4743,21 @@ msgstr "" #. 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 user nickname. -#: actions/peopletagsforuser.php:144 +#: actions/peopletagsforuser.php:149 #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. -#: actions/peopletagsubscribers.php:108 +#: actions/peopletagsubscribers.php:113 #, php-format msgid "Subscribers to list %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, %3$d is a page number. -#: actions/peopletagsubscribers.php:113 +#: actions/peopletagsubscribers.php:118 #, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" msgstr "" @@ -4697,7 +4779,7 @@ msgstr "" #. 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. -#: actions/peopletagsubscriptions.php:110 +#: actions/peopletagsubscriptions.php:115 #, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " @@ -5065,7 +5147,7 @@ msgstr "" #. TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices. #. TRANS: This message contains Markdown links. Please mind the formatting. -#: actions/public.php:273 +#: actions/public.php:275 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5076,7 +5158,7 @@ msgstr "" #. TRANS: Message for not logged in users at a closed site trying to view the public feed of notices. #. TRANS: This message contains Markdown links. Please mind the formatting. -#: actions/public.php:280 +#: actions/public.php:282 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5084,52 +5166,6 @@ msgid "" "tool." msgstr "" -#. TRANS: Title for page with public list cloud. -#: actions/publicpeopletagcloud.php:57 -msgid "Public list cloud" -msgstr "" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#: actions/publicpeopletagcloud.php:65 -#, php-format -msgid "These are largest lists on %s" -msgstr "" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "" - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -#: actions/publicpeopletagcloud.php:77 -msgid "Be the first to list someone!" -msgstr "" - -#. 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 list " -"someone!" -msgstr "" - -#. TRANS: DT element on on page with public list cloud. -#: actions/publicpeopletagcloud.php:136 -msgid "List cloud" -msgstr "" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#: actions/publicpeopletagcloud.php:177 -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #: actions/publicrss.php:106 #, php-format @@ -5953,10 +5989,10 @@ msgid "FOAF for %s group" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#: actions/showgroup.php:219 +#: actions/showgroup.php:218 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5967,15 +6003,15 @@ msgid "" msgstr "" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#: actions/showgroup.php:229 +#: actions/showgroup.php:227 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" #. TRANS: Client error displayed requesting a single message that does not exist. @@ -6014,56 +6050,56 @@ msgstr "" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is a page number. -#: actions/showprofiletag.php:125 +#: actions/showprofiletag.php:129 #, 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 list, %2$s is a page number. -#: actions/showprofiletag.php:133 +#: actions/showprofiletag.php:137 #, 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 list, %2$s is the tagger's nickname, %3$d is a page number. -#: actions/showprofiletag.php:139 +#: actions/showprofiletag.php:143 #, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" msgstr "" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. -#: actions/showprofiletag.php:148 +#: actions/showprofiletag.php:152 #, php-format msgid "Private timeline of %s list by you" msgstr "" #. TRANS: Title for public list timeline where the viewer is the tagger. #. TRANS: %s is a list. -#: actions/showprofiletag.php:156 +#: actions/showprofiletag.php:160 #, php-format msgid "Timeline for %s list by you" msgstr "" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#: actions/showprofiletag.php:162 +#: actions/showprofiletag.php:166 #, php-format msgid "Timeline for %1$s list by %2$s" msgstr "" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#: actions/showprofiletag.php:204 +#: actions/showprofiletag.php:208 #, php-format msgid "Feed for %1$s list by %2$s (Atom)" msgstr "" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#: actions/showprofiletag.php:221 +#: actions/showprofiletag.php:225 #, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " @@ -6071,13 +6107,13 @@ msgid "" msgstr "" #. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. -#: actions/showprofiletag.php:229 +#: actions/showprofiletag.php:233 msgid "Try tagging more people." msgstr "" #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#: actions/showprofiletag.php:234 +#: actions/showprofiletag.php:238 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " @@ -6086,7 +6122,7 @@ msgstr "" #. TRANS: Header on show list page. #. TRANS: Link description for link to list of users tagged with a tag (so part of a list). -#: actions/showprofiletag.php:302 lib/peopletaglist.php:173 +#: actions/showprofiletag.php:306 lib/peopletaglist.php:173 msgid "Listed" msgstr "" @@ -6098,7 +6134,7 @@ msgstr "" #. TRANS: Text for user subscriber statistics if user has no subscribers. #. TRANS: Text for user user group membership statistics if user is not a member of any group. #. TRANS: Default content for section/sidebar widget. -#: actions/showprofiletag.php:311 actions/showprofiletag.php:349 +#: actions/showprofiletag.php:315 actions/showprofiletag.php:353 #: lib/groupaction.php:163 lib/groupaction.php:256 lib/peopletags.php:166 #: lib/profileaction.php:140 lib/profileaction.php:172 #: lib/profileaction.php:270 lib/section.php:117 @@ -6107,22 +6143,16 @@ msgstr "" #. 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:323 +#: actions/showprofiletag.php:327 msgid "Show all" msgstr "" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. -#: actions/showprofiletag.php:340 lib/peopletaglist.php:183 +#: actions/showprofiletag.php:344 lib/peopletaglist.php:183 msgid "Subscribers" msgstr "" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -#: actions/showprofiletag.php:361 -msgid "All subscribers" -msgstr "" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #: actions/showstream.php:89 @@ -6226,7 +6256,7 @@ msgstr "" msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. @@ -6825,33 +6855,32 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. 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. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#: actions/subscriptions.php:141 actions/subscriptions.php:147 +#: actions/subscriptions.php:139 actions/subscriptions.php:145 #, php-format msgid "%s is not listening to anyone." msgstr "" #. TRANS: Atom feed title. %s is a profile nickname. -#: actions/subscriptions.php:166 +#: actions/subscriptions.php:164 #, php-format msgid "Subscription feed for %s (Atom)" msgstr "" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#: actions/subscriptions.php:231 +#: actions/subscriptions.php:229 msgctxt "LABEL" msgid "IM" msgstr "" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. -#: actions/subscriptions.php:246 +#: actions/subscriptions.php:244 msgid "SMS" msgstr "" @@ -7223,7 +7252,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -7232,7 +7261,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -7274,32 +7303,32 @@ msgid "Description" msgstr "" #. TRANS: Activity title when marking a notice as favorite. -#: classes/Fave.php:138 +#: classes/Fave.php:140 msgid "Favor" msgstr "" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. -#: classes/Fave.php:141 +#: classes/Fave.php:143 #, php-format msgid "%1$s marked notice %2$s as a favorite." msgstr "" #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:167 +#: classes/File.php:175 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:199 +#: classes/File.php:207 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. #. TRANS: %1$s is used for plural. -#: classes/File.php:215 +#: classes/File.php:223 #, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$d bytes. " @@ -7312,7 +7341,7 @@ msgstr[1] "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. -#: classes/File.php:228 +#: classes/File.php:236 #, php-format 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." @@ -7321,7 +7350,7 @@ msgstr[1] "" #. 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. -#: classes/File.php:240 +#: classes/File.php:248 #, php-format 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." @@ -7329,47 +7358,47 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:287 classes/File.php:302 +#: classes/File.php:295 classes/File.php:310 msgid "Invalid filename." msgstr "" #. TRANS: Exception thrown providing an invalid profile ID. #. TRANS: %s is the invalid profile ID. -#: classes/Group_join_queue.php:66 classes/Group_member.php:115 +#: classes/Group_join_queue.php:66 classes/Group_member.php:117 #, php-format msgid "Profile ID %s is invalid." msgstr "" #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. -#: classes/Group_join_queue.php:79 classes/Group_member.php:128 +#: classes/Group_join_queue.php:79 classes/Group_member.php:130 #, php-format msgid "Group ID %s is invalid." msgstr "" #. TRANS: Exception thrown when joining a group fails. -#: classes/Group_member.php:81 +#: classes/Group_member.php:83 msgid "Group join failed." msgstr "" #. TRANS: Exception thrown when trying to leave a group the user is not a member of. -#: classes/Group_member.php:94 +#: classes/Group_member.php:96 msgid "Not part of group." msgstr "" #. TRANS: Exception thrown when trying to leave a group fails. -#: classes/Group_member.php:102 +#: classes/Group_member.php:104 msgid "Group leave failed." msgstr "" #. TRANS: Activity title. -#: classes/Group_member.php:174 +#: classes/Group_member.php:176 msgid "Join" msgstr "" #. TRANS: Success message for subscribe to group attempt through OStatus. #. TRANS: %1$s is the member name, %2$s is the subscribed group's name. -#: classes/Group_member.php:178 +#: classes/Group_member.php:180 #, php-format msgid "%1$s has joined group %2$s." msgstr "" @@ -7511,7 +7540,7 @@ msgstr "" #. TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. #. TRANS: Full name of a profile or group followed by nickname in parens -#: classes/Profile.php:243 classes/User_group.php:307 +#: classes/Profile.php:263 classes/User_group.php:307 #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" @@ -7519,45 +7548,45 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:1060 +#: classes/Profile.php:1097 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" #. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:1069 +#: classes/Profile.php:1106 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" #. TRANS: Server exception. -#: classes/Profile_list.php:392 +#: classes/Profile_list.php:395 msgid "The tag you are trying to rename to already exists." msgstr "" #. TRANS: Server exception saving new tag without having a tagger specified. -#: classes/Profile_list.php:627 +#: classes/Profile_list.php:630 msgid "No tagger specified." msgstr "" #. TRANS: Server exception saving new tag without having a tag specified. -#: classes/Profile_list.php:632 +#: classes/Profile_list.php:635 msgid "No tag specified." msgstr "" #. TRANS: Server exception saving new tag. -#: classes/Profile_list.php:670 +#: classes/Profile_list.php:673 msgid "Could not create profile tag." msgstr "" #. TRANS: Server exception saving new tag. -#: classes/Profile_list.php:680 +#: classes/Profile_list.php:683 msgid "Could not set profile tag URI." msgstr "" #. TRANS: Server exception saving new tag. -#: classes/Profile_list.php:697 +#: classes/Profile_list.php:700 msgid "Could not set profile tag mainpage." msgstr "" @@ -7785,25 +7814,25 @@ msgid "Untitled page" msgstr "" #. TRANS: Localized tooltip for '...' expansion button on overlong remote messages. -#: lib/action.php:365 +#: lib/action.php:363 msgctxt "TOOLTIP" msgid "Show more" msgstr "" #. TRANS: Inline reply form submit button: submits a reply comment. -#: lib/action.php:368 +#: lib/action.php:366 msgctxt "BUTTON" msgid "Reply" msgstr "" #. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form. #. TRANS: Field label for reply mini form. -#: lib/action.php:371 lib/threadednoticelist.php:412 +#: lib/action.php:369 lib/threadednoticelist.php:412 msgid "Write a reply..." msgstr "" #. TRANS: Tab on the notice form. -#: lib/action.php:629 +#: lib/action.php:627 msgctxt "TAB" msgid "Status" msgstr "" @@ -7812,7 +7841,7 @@ msgstr "" #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby -#: lib/action.php:1005 +#: lib/action.php:1003 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -7820,7 +7849,7 @@ msgid "" msgstr "" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. -#: lib/action.php:1008 +#: lib/action.php:1006 #, php-format msgid "**%%site.name%%** is a microblogging service." msgstr "" @@ -7829,7 +7858,7 @@ msgstr "" #. TRANS: Make sure there is no whitespace between "]" and "(". #. TRANS: Text between [] is a link description, text between () is the link itself. #. TRANS: %s is the version of StatusNet that is being used. -#: lib/action.php:1015 +#: lib/action.php:1013 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -7839,39 +7868,39 @@ msgstr "" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. -#: lib/action.php:1033 +#: lib/action.php:1031 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved'. #. TRANS: %1$s is the copyright owner. -#: lib/action.php:1040 +#: lib/action.php:1038 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" #. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set. -#: lib/action.php:1044 +#: lib/action.php:1042 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" #. TRANS: license message in footer. #. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. -#: lib/action.php:1076 +#: lib/action.php:1074 #, php-format msgid "All %1$s content and data are available under the %2$s license." msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: present than the currently displayed information. -#: lib/action.php:1429 +#: lib/action.php:1427 msgid "After" msgstr "" #. TRANS: Pagination message to go to a page displaying information more in the #. TRANS: past than the currently displayed information. -#: lib/action.php:1439 +#: lib/action.php:1437 msgid "Before" msgstr "" @@ -7989,22 +8018,11 @@ msgid "saveSettings() not implemented." msgstr "" #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. -#: lib/adminpanelnav.php:66 lib/settingsnav.php:66 +#: lib/adminpanelnav.php:66 msgctxt "HEADER" msgid "Home" msgstr "" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -#: lib/adminpanelnav.php:71 lib/defaultlocalnav.php:60 -#: lib/personalgroupnav.php:74 lib/settingsnav.php:71 -msgctxt "MENU" -msgid "Home" -msgstr "" - #. TRANS: Header in administrator navigation panel. #: lib/adminpanelnav.php:84 msgctxt "HEADER" @@ -8964,15 +8982,6 @@ msgctxt "MENU" msgid "Public" msgstr "" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -#: lib/defaultlocalnav.php:71 lib/publicgroupnav.php:73 -#: lib/searchgroupnav.php:82 lib/subgroupnav.php:124 -msgctxt "MENU" -msgid "Groups" -msgstr "" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. #: lib/defaultlocalnav.php:79 lib/subgroupnav.php:135 @@ -9233,6 +9242,12 @@ msgstr "" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +#: lib/homestubnav.php:58 +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 #: lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" @@ -9663,11 +9678,16 @@ msgstr "" #. 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. +#: lib/mail.php:833 +#, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. #. TRANS: %5$s is a link to the addressed user's e-mail settings. -#: lib/mail.php:833 lib/mail.php:843 +#: lib/mail.php:843 #, php-format msgid "%1$s has joined your group %2$s on %3$s." msgstr "" @@ -10099,47 +10119,47 @@ msgid "Search" msgstr "" #. TRANS: Menu item in list navigation panel. -#: lib/peopletaggroupnav.php:107 +#: lib/peopletaggroupnav.php:113 msgctxt "MENU" msgid "List" msgstr "" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#: lib/peopletaggroupnav.php:110 lib/peopletaggroupnav.php:121 +#: lib/peopletaggroupnav.php:116 lib/peopletaggroupnav.php:127 #, php-format msgid "%1$s list by %2$s." msgstr "" #. TRANS: Menu item in list navigation panel. -#: lib/peopletaggroupnav.php:118 +#: lib/peopletaggroupnav.php:124 msgctxt "MENU" msgid "Listed" msgstr "" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#: lib/peopletaggroupnav.php:129 lib/subgroupnav.php:96 +#: lib/peopletaggroupnav.php:135 lib/subgroupnav.php:96 msgctxt "MENU" msgid "Subscribers" msgstr "" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#: lib/peopletaggroupnav.php:132 +#: lib/peopletaggroupnav.php:138 #, php-format msgid "Subscribers to %1$s list by %2$s." msgstr "" #. TRANS: Menu item in list navigation panel. -#: lib/peopletaggroupnav.php:142 +#: lib/peopletaggroupnav.php:148 msgctxt "MENU" msgid "Edit" msgstr "" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#: lib/peopletaggroupnav.php:145 +#: lib/peopletaggroupnav.php:151 #, php-format msgid "Edit %s list by you." msgstr "" @@ -10257,7 +10277,7 @@ msgstr "" #. TRANS: Menu item in personal group navigation menu. #. TRANS: Menu item in settings navigation panel. #. TRANS: Menu item in local navigation menu. -#: lib/personalgroupnav.php:82 lib/settingsnav.php:89 lib/subgroupnav.php:77 +#: lib/personalgroupnav.php:82 lib/settingsnav.php:74 lib/subgroupnav.php:77 msgctxt "MENU" msgid "Profile" msgstr "" @@ -10460,7 +10480,7 @@ msgid "Revoke the \"%s\" role from this user" msgstr "" #. TRANS: Client error on action trying to visit a non-existing page. -#: lib/router.php:1082 +#: lib/router.php:1140 msgid "Page not found." msgstr "" @@ -10544,24 +10564,6 @@ msgstr "" msgid "Find groups on this site" msgstr "" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -#: lib/secondarynav.php:56 -msgctxt "MENU" -msgid "Help" -msgstr "" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -#: lib/secondarynav.php:59 -msgctxt "MENU" -msgid "About" -msgstr "" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#: lib/secondarynav.php:62 -msgctxt "MENU" -msgid "FAQ" -msgstr "" - #. TRANS: Secondary navigation menu item leading to Terms of Service. #: lib/secondarynav.php:67 msgctxt "MENU" @@ -10586,19 +10588,6 @@ msgctxt "MENU" msgid "Version" msgstr "" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -#: lib/secondarynav.php:81 -msgctxt "MENU" -msgid "Contact" -msgstr "" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#: lib/secondarynav.php:84 -msgctxt "MENU" -msgid "Badge" -msgstr "" - #. TRANS: Default title for section/sidebar widget. #: lib/section.php:105 msgid "Untitled section" @@ -10610,101 +10599,101 @@ msgid "More..." msgstr "" #. TRANS: Header in settings navigation panel. -#: lib/settingsnav.php:83 +#: lib/settingsnav.php:68 msgctxt "HEADER" msgid "Settings" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:91 +#: lib/settingsnav.php:76 msgid "Change your profile settings" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:96 +#: lib/settingsnav.php:81 msgctxt "MENU" msgid "Avatar" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:98 +#: lib/settingsnav.php:83 msgid "Upload an avatar" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:103 +#: lib/settingsnav.php:88 msgctxt "MENU" msgid "Password" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:105 +#: lib/settingsnav.php:90 msgid "Change your password" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:110 +#: lib/settingsnav.php:95 msgctxt "MENU" msgid "Email" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:112 +#: lib/settingsnav.php:97 msgid "Change email handling" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:117 +#: lib/settingsnav.php:102 msgctxt "MENU" msgid "URL" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:119 +#: lib/settingsnav.php:104 msgid "URL shorteners" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:131 +#: lib/settingsnav.php:116 msgctxt "MENU" msgid "IM" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:133 +#: lib/settingsnav.php:118 msgid "Updates by instant messenger (IM)" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:140 +#: lib/settingsnav.php:125 msgctxt "MENU" msgid "SMS" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:142 +#: lib/settingsnav.php:127 msgid "Updates by SMS" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:148 +#: lib/settingsnav.php:133 msgctxt "MENU" msgid "Connections" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:150 +#: lib/settingsnav.php:135 msgid "Authorized connected applications" msgstr "" #. TRANS: Menu item in settings navigation panel. -#: lib/settingsnav.php:156 +#: lib/settingsnav.php:141 msgctxt "MENU" msgid "Old school" msgstr "" #. TRANS: Menu item title in settings navigation panel. -#: lib/settingsnav.php:158 +#: lib/settingsnav.php:143 msgid "UI tweaks for old-school users" msgstr "" @@ -10979,17 +10968,28 @@ msgstr[0] "" msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. -#: lib/threadednoticelist.php:577 +#: lib/threadednoticelist.php:586 msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "" -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. -#: lib/threadednoticelist.php:581 +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#: lib/threadednoticelist.php:591 #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#: lib/threadednoticelist.php:599 +#, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." msgstr[0] "" msgstr[1] "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 9f02a4fb23..1872cb71f9 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,17 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:37+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:42+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -215,7 +216,6 @@ msgstr "Ingen sådan sida" #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -324,8 +324,6 @@ msgstr "Skicka inbjudning" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s och vänner" @@ -1963,6 +1961,79 @@ msgstr "Lägg till i favoriter" msgid "No such document \"%s\"." msgstr "Inget sådant dokument \"%s\"." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Hem" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Hjälp" + +#, fuzzy +msgid "Getting started" +msgstr "Inställningar sparade." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Om" + +#, fuzzy +msgid "About this site" +msgstr "Häv blockering av denna användare" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "Vanliga frågor" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Kontakt" + +#, fuzzy +msgid "Contact info" +msgstr "Kontakt" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Taggar" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Grupper" + +#, fuzzy +msgid "Using groups" +msgstr "Användargrupper" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -3379,7 +3450,7 @@ msgstr "Inställningar för snabbmeddelanden" #. TRANS: Usage instructions for profile settings. msgid "If you like it \"the old way\", you can set that here." -msgstr "" +msgstr "Om du gillar det på \"det gamla sättet\", kan du ange det här." #. TRANS: Confirmation shown when user profile settings are saved. #. TRANS: Message after successful saving of administrative settings. @@ -3393,7 +3464,7 @@ msgid "Show conversation page as hierarchical trees" msgstr "" msgid "Show nicknames (not full names) in timelines" -msgstr "" +msgstr "Visa smeknamn (inte fullständiga namn) i tidslinjer" #. TRANS: Button text to save a list. msgid "Save" @@ -4266,47 +4337,6 @@ msgstr "" "Mikroblogg)tjänst baserad på den fria programvaran [StatusNet](http://status." "net/)." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "Publikt listmoln" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Dessa är de största listorna på %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Ingen har [listat] (%%doc.tags%%) någon ännu." - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -msgid "Be the first to list someone!" -msgstr "Var den första att lista någon!" - -#. 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 list " -"someone!" -msgstr "" -"Varför inte [registrera ett konto] (%%action.register%%) och bli den första " -"att lista någon!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Listmoln" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] " 1 person listad" -msgstr[1] " %d personer listade" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5046,7 +5076,7 @@ msgid "FOAF for %s group" msgstr "FOAF för %s grupp" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5064,14 +5094,14 @@ msgstr "" "del av denna grupp och många fler! ([Läs mer](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** är en användargrupp på %%%%site.name%%%%, en [mikroblogg](http://sv." "wikipedia.org/wiki/Mikroblogg)tjänst baserad den fria programvaran " @@ -5197,11 +5227,6 @@ msgstr "Visa alla" msgid "Subscribers" msgstr "Prenumeranter" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Alla prenumeranter" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5295,11 +5320,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** har ett konto på %%%%site.name%%%%, en [mikroblogg](http://sv." "wikipedia.org/wiki/Mikroblogg)tjänst baserad på den fria programvaran " @@ -5804,13 +5829,12 @@ msgstr "Det är dessa personer vars notiser %s lyssnar på." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Du lyssnar inte på någons notiser just nu. Prova att prenumerera på personer " "du känner. Prova [personsökning](%%action.peoplesearch%%), leta bland " @@ -6134,13 +6158,13 @@ msgstr "StatusNet %s" #. TRANS: Content part of StatusNet version page. #. TRANS: %1$s is the engine name (StatusNet) and %2$s is the StatusNet version. -#, fuzzy, php-format +#, php-format msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2011 StatusNet, " "Inc. and contributors." msgstr "" "Denna webbplats drivs med %1$s version %2$s, Copyright 2008-2010 StatusNet, " -"Inc. och medarbetare." +"Inc. och bidragsgivare." #. TRANS: Header for StatusNet contributors section on the version page. msgid "Contributors" @@ -6151,11 +6175,12 @@ msgid "License" msgstr "Licens" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet är fri programvara: du kan distribuera det och/eller modifiera den " "under GNU Affero General Public License såsom publicerad av Free Software " @@ -6163,11 +6188,12 @@ msgstr "" "senare version. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Detta program distribueras i hopp om att det kommer att vara användbart, men " "UTAN NÅGRA GARANTIER; även utan underförstådda garantier om SÄLJBARHET eller " @@ -6824,19 +6850,10 @@ msgid "saveSettings() not implemented." msgstr "saveSetting() är inte implementerat." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Hem" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Hem" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7643,13 +7660,6 @@ msgctxt "MENU" msgid "Public" 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. -msgctxt "MENU" -msgid "Groups" -msgstr "Grupper" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7756,9 +7766,8 @@ msgid "All members" msgstr "Alla medlemmar" #. TRANS: Header for mini list of users with a pending membership request on a group page (h2). -#, fuzzy msgid "Pending" -msgstr "Väntande (%d)" +msgstr "Väntande" #. TRANS: Header for mini list of users that are blocked in a group page (h2). msgid "Blocked" @@ -7873,6 +7882,11 @@ msgstr "Visa alla" msgid "See all groups you belong to." msgstr "Se alla grupper som du tillhör." +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" @@ -8335,6 +8349,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s har gått med i din grupp %2$s på %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8631,9 +8649,8 @@ msgstr "i sammanhang" msgid "Repeated by" msgstr "Upprepad av" -#, fuzzy msgid " " -msgstr ", " +msgstr " " #. TRANS: Link title in notice list item to reply to a notice. msgid "Reply to this notice." @@ -9093,21 +9110,6 @@ msgstr "Hitta innehåll i notiser" msgid "Find groups on this site" msgstr "Hitta grupper på denna webbplats" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Hjälp" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Om" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "Vanliga frågor" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9128,17 +9130,6 @@ msgctxt "MENU" msgid "Version" msgstr "Version" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Kontakt" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Emblem" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Namnlös sektion" @@ -9222,7 +9213,7 @@ msgstr "Tillåt anslutna applikationer" #. TRANS: Menu item in settings navigation panel. msgctxt "MENU" msgid "Old school" -msgstr "" +msgstr "Gamla skolan" #. TRANS: Menu item title in settings navigation panel. msgid "UI tweaks for old-school users" @@ -9456,17 +9447,28 @@ msgstr[0] "%%s gillar detta. " msgstr[1] "%%s gillar detta." #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Du har upprepat denna notis." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. -#, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] " En person har upprepat denna notis." -msgstr[1] "%d personer har upprepat denna notis." +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, fuzzy, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "%%s och %d andra gillar detta. " +msgstr[1] "%%s och %d andra gillar detta." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%%s gillar detta. " +msgstr[1] "%%s gillar detta." #. TRANS: Form legend. #, php-format diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 27df6cb7f1..28e9fcf124 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -202,7 +203,6 @@ msgstr "అటువంటి పేజీ లేదు." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -309,8 +309,6 @@ msgstr "ఆహ్వానాలు" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s మరియు మిత్రులు" @@ -1940,6 +1938,79 @@ msgstr "ఇష్టాంశాలకు చేర్చు" msgid "No such document \"%s\"." msgstr "\"%s\" అనే పత్రం లేదు." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "ముంగిలి" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "సహాయం" + +#, fuzzy +msgid "Getting started" +msgstr "అమరికలు భద్రమయ్యాయి." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "గురించి" + +#, fuzzy +msgid "About this site" +msgstr "ఈ వాడుకరిని నిరోధించు" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "ప్రశ్నలు" + +msgid "Frequently asked questions" +msgstr "తరచూ అడిగే ప్రశ్నలు" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "సంప్రదింపులు" + +#, fuzzy +msgid "Contact info" +msgstr "సంప్రదింపులు" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "ట్యాగులు" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "గుంపులు" + +#, fuzzy +msgid "Using groups" +msgstr "వాడుకరి గుంపులు" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4263,47 +4334,6 @@ msgstr "" "ఇది %%site.name%%, స్వేచ్ఛా మృదూపకరమైన [స్టేటస్‌నెట్](http://status.net/) అనే పనిముట్టుపై " "ఆధారపడిన ఒక [మైక్రో-బ్లాగింగు](http://en.wikipedia.org/wiki/Micro-blogging) సేవ." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "బహిరంగ జాబితా మేఘం" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "%sలో అత్యంత పెద్ద జాబితాలు ఇవి" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "[హ్యాష్‌ట్యాగు](%%doc.tags%%)తో ఇంకా ఎవరూ నోటీసులు వ్రాయలేదు." - -#. 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 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 list " -"someone!" -msgstr "" -"[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదటగా జాబితాలను సృష్టించేవారు ఎందుకు " -"కాకూడదు!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "జాబితా మేఘం" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "1 వ్యక్తి" -msgstr[1] "%d వ్యక్తులు" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5035,7 +5065,7 @@ msgid "FOAF for %s group" msgstr "%s గుంపు" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5054,14 +5084,14 @@ msgstr "" "doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** అనేది [స్టేటస్‌నెట్](http://status.net/) అనే స్వేచ్ఛా ఉపకరణ అధారిత [సూక్ష్మ-బ్లాగింగు]" "(http://en.wikipedia.org/wiki/Micro-blogging) సేవ అయిన %%%%site.name%%%%లో ఒక " @@ -5187,11 +5217,6 @@ msgstr "అన్నీ చూపించు" msgid "Subscribers" msgstr "చందాదార్లు" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "అందరు చందాదార్లు" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format @@ -5289,7 +5314,7 @@ msgstr "" msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "ఇది %%site.name%%, స్వేచ్ఛా మృదూపకరమైన [స్టేటస్‌నెట్](http://status.net/) అనే పనిముట్టుపై " "ఆధారపడిన ఒక [మైక్రో-బ్లాగింగు](http://en.wikipedia.org/wiki/Micro-blogging) సేవ." @@ -5806,8 +5831,7 @@ msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" #. TRANS: Subscription list text when looking at the subscriptions for a of a user other @@ -6146,7 +6170,7 @@ msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6154,7 +6178,7 @@ msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" #. TRANS: Content part of StatusNet version page. @@ -6806,19 +6830,10 @@ msgid "saveSettings() not implemented." msgstr "" #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "ముంగిలి" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "ముంగిలి" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7645,13 +7660,6 @@ msgctxt "MENU" msgid "Public" msgstr "బహిరంగం" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "గుంపులు" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7874,6 +7882,11 @@ msgstr "అన్నీ చూపించు" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "" @@ -8329,6 +8342,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%3$s నందు %1$s మీ %2$s గుంపులో చేరారు." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8695,9 +8712,8 @@ msgstr[0] "గుంపు లేదా విషయాన్ని గురి msgstr[1] "గుంపు లేదా విషయాన్ని గురించి %d అక్షరాల్లో వివరించండి" #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "ఈ వాడుకరిని తొలగించండి." +msgstr "ఈ జాబితాను తొలగించండి." #. TRANS: Header in list edit form. msgid "Add or remove people" @@ -9094,21 +9110,6 @@ msgstr "" msgid "Find groups on this site" msgstr "ఈ సైటులోని గుంపులని కనుగొనండి" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "సహాయం" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "గురించి" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "ప్రశ్నలు" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9130,17 +9131,6 @@ msgctxt "MENU" msgid "Version" msgstr "సంచిక" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "సంప్రదింపులు" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "బాడ్జీ" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "శీర్షికలేని విభాగం" @@ -9463,17 +9453,28 @@ msgstr[0] "" msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "మీరు ఈ నోటీసును పునరావృతించారు." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" +msgstr[1] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. #, fuzzy, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "ఒక వ్యక్తి" -msgstr[1] "%d వ్యక్తులు" +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%s యొక్క పునరావృతం" +msgstr[1] "%s యొక్క పునరావృతం" #. TRANS: Form legend. #, fuzzy, php-format @@ -9577,9 +9578,8 @@ msgid "Unsubscribe" msgstr "చందామాను" #. TRANS: Button title on unsubscribe form. -#, fuzzy msgid "Unsubscribe from this user." -msgstr "ఈ వాడుకరి నుండి చందామాను" +msgstr "ఈ వాడుకరి నుండి చందాను విరమించండి." #. TRANS: Exception text shown when no profile can be found for a user. #. TRANS: %1$s is a user nickname, $2$d is a user ID (number). diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index b4302da954..43ce3117e5 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:11:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-core\n" @@ -215,7 +216,6 @@ msgstr "Walang ganyang pahina." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -328,8 +328,6 @@ msgstr "Magpadala ng mga paanyaya." #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s at mga kaibigan" @@ -2009,6 +2007,79 @@ msgstr "Idagdag sa mga kinagigiliwan" msgid "No such document \"%s\"." msgstr "Walang ganyang dokumentong \"%s\"." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Tahanan" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Tulong" + +#, fuzzy +msgid "Getting started" +msgstr "Nasagip ang mga katakdaan." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Patungkol" + +#, fuzzy +msgid "About this site" +msgstr "Huwag hadlangan ang tagagamit na ito" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "Mga malilimit na itanong" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Kaugnayan" + +#, fuzzy +msgid "Contact info" +msgstr "Kaugnayan" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Mga tatak" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Mga pangkat" + +#, fuzzy +msgid "Using groups" +msgstr "Mga pangkat ng tagagamit" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4392,47 +4463,6 @@ msgstr "" "en.wikipedia.org/wiki/Micro-blogging) na nakabatay sa kasangkapan ng " "Malayang Sopwer na [StatusNet](http://status.net/)." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "Ulap ng pangmadlang talaan" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Ito ang mga pinakamalaking mga talaan sa %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Wala pang [nagtatala](%%doc.tags%%) ng sinuman." - -#. TRANS: Additional empty list message on page with public list cloud for logged in users. -msgid "Be the first to list someone!" -msgstr "Maging pinakauna sa pagtatala ng isang tao!" - -#. 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 list " -"someone!" -msgstr "" -"Bakit hindi [magpatala ng isang akawnt] (%%action.register%%) at maging " -"pinakauna sa pagtatala ng isang tao!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Itala ang ulap" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "1 taong naitala" -msgstr[1] "%d mga taong naitala" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5209,7 +5239,7 @@ msgid "FOAF for %s group" msgstr "FOAF para sa pangkat na %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5229,14 +5259,14 @@ msgstr "" "iba! ([Magbasa pa ng marami](%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"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-" @@ -5366,11 +5396,6 @@ msgstr "Ipakitang lahat" msgid "Subscribers" msgstr "Mga nagpapasipi" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Lahat ng mga nagpapasipi" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5469,11 +5494,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "Si **%s** ay may isang akawnt sa %%%%site.name%%%%, isang palingkuran ng " "[maliitang pagboblog](http://en.wikipedia.org/wiki/Micro-blogging) na " @@ -6002,13 +6027,12 @@ msgstr "Ito ang mga taong pinakikinigan ni %s ng mga pabatid." #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." 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." @@ -6360,11 +6384,12 @@ msgid "License" msgstr "Lisensiya" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"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 " @@ -6372,11 +6397,12 @@ msgstr "" "3 bersyon ng Lisensiya, o (ayon sa pagpili mo) anumang bersyon sa paglaon. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Ang palatuntunan ay ipinamamahagi na inaaasahang magiging magagamit ito, " "ngunit WALANG ANUMANG PANGAKO NG KATUPARAN; na wala ring pahiwatig na " @@ -7067,19 +7093,10 @@ msgid "saveSettings() not implemented." msgstr "Hindi ipinatutupad ang sagipin ang mga Katakdaan()." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Tahanan" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Tahanan" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7905,13 +7922,6 @@ msgctxt "MENU" msgid "Public" msgstr "Pangmadla" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Mga pangkat" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -8141,6 +8151,11 @@ msgstr "Ipakitang lahat" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Ang pahinang ito ay hindi makukuhang nasa uri ng midyang tinanggap mo" @@ -8613,6 +8628,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "Si %1$s ay sumali sa iyong pangkat na %2$s na nasa %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9381,21 +9400,6 @@ msgstr "Maghanap ng nilalaman ng mga pabatid" msgid "Find groups on this site" msgstr "Maghanap ng mga pangkat sa sityong ito" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Tulong" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Patungkol" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "Mga malilimit na itanong" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9416,17 +9420,6 @@ msgctxt "MENU" msgid "Version" msgstr "Bersyon" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Kaugnayan" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Tsapa" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Walang pamagat na seksyon" @@ -9761,17 +9754,28 @@ msgstr[0] "Gusto ito ng %%s." msgstr[1] "Gusto ito ng %%s." #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Inulit mo ang pabatid na ito." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. -#, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Isang tao ang umulit ng paunawang ito." -msgstr[1] "%d mga tao ang umulit ng paunawang ito." +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, fuzzy, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "Gusto ito ng %%s at %d iba pa." +msgstr[1] "Gusto ito ng %%s at %d iba pa." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "Gusto ito ng %%s." +msgstr[1] "Gusto ito ng %%s." #. TRANS: Form legend. #, php-format diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 63e21f34f0..5dae7eeb6d 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -216,7 +217,6 @@ msgstr "Немає такої сторінки." #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -326,8 +326,6 @@ msgstr "Надіслати запрошення." #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s з друзями" @@ -1998,6 +1996,79 @@ msgstr "Додати до обраних" msgid "No such document \"%s\"." msgstr "Немає такого документа «%s»." +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "Головна" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "Довідка" + +#, fuzzy +msgid "Getting started" +msgstr "Налаштування збережено." + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "Деталі" + +#, fuzzy +msgid "About this site" +msgstr "Розблокувати цього користувача" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "ЧаП" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "Контакт" + +#, fuzzy +msgid "Contact info" +msgstr "Контакт" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "Теґи" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "Спільноти" + +#, fuzzy +msgid "Using groups" +msgstr "Спільноти" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4326,48 +4397,6 @@ msgstr "" "Мікроблогінг), який працює на вільному програмному забезпеченні [StatusNet]" "(http://status.net/)." -#. TRANS: Title for page with public list cloud. -msgid "Public list cloud" -msgstr "Загальна хмарка списків" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "Це найдовші списки на %s" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "Поки що ніхто нікого не додав до [списків](%%doc.tags%%)." - -#. 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 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 list " -"someone!" -msgstr "" -"Чому б не [зареєструватись](%%%%action.register%%%%) і не створити новий " -"список!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "Хмарка списку" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "1 користувач у списку" -msgstr[1] "%d користувачів у списку" -msgstr[2] "%d користувача у списку" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -5112,7 +5141,7 @@ msgid "FOAF for %s group" msgstr "FOAF спільноти %s" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -5131,14 +5160,14 @@ msgstr "" "help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** це спільнота користувачів на %%%%site.name%%%% — сервісі [мікроблоґів]" "(http://uk.wikipedia.org/wiki/Мікроблогінг), який працює на вільному " @@ -5264,11 +5293,6 @@ msgstr "Показати всіх" msgid "Subscribers" msgstr "Підписані" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "Всі підписані" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5363,11 +5387,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s** є власником акаунту на сайті %%%%site.name%%%% — сервісі [мікроблоґів]" "(http://uk.wikipedia.org/wiki/Мікроблогінг), який працює на вільному " @@ -5877,13 +5901,12 @@ msgstr "Тут представлені ті, за чиїми дописами #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "Ви не слідкуєте за жодним з дописувачів, спробуйте підписатись до тих, кого " "ви знаєте. Спробуйте [розшукати людей](%%action.peoplesearch%%), роздивіться " @@ -6225,11 +6248,12 @@ msgid "License" msgstr "Ліцензія" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet є вільним програмним забезпеченням: ви можете розповсюджувати та/" "або змінювати його відповідно до умов GNU Affero General Public License, що " @@ -6237,11 +6261,12 @@ msgstr "" "ваш розсуд) будь-яка подальша версія. " #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "Ми розміщуємо дану програму в надії, що вона стане корисною, проте НЕ ДАЄМО " "ЖОДНИХ ГАРАНТІЙ; у тому числі неявних гарантій її КОМЕРЦІЙНОЇ ЦІННОСТІ або " @@ -6903,19 +6928,10 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() не виконано." #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "Головна" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "Головна" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7742,13 +7758,6 @@ msgctxt "MENU" msgid "Public" msgstr "Загал" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "Спільноти" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7979,6 +7988,11 @@ msgstr "Показати всіх" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "Ця сторінка не доступна для того типу медіа, з яким ви погодились" @@ -8449,6 +8463,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s долучився до спільноти %2$s на %3$s." + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -9210,21 +9228,6 @@ msgstr "Пошук дописів за змістом" msgid "Find groups on this site" msgstr "Пошук спільнот на цьому сайті" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "Довідка" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "Деталі" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "ЧаП" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -9245,17 +9248,6 @@ msgctxt "MENU" msgid "Version" msgstr "Версія" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "Контакт" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "Бедж" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "Розділ без заголовку" @@ -9583,18 +9575,30 @@ msgstr[1] "%%s сподобалося це." msgstr[2] "%%s сподобалося це." #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "Ви вже повторили цей допис." -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. -#, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "Один користувач повторив цей допис." -msgstr[1] "%d користувачів повторили цей допис." -msgstr[2] "%d користувачів повторили цей допис." +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). +#, fuzzy, php-format +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "%%s і %d сподобалося це." +msgstr[1] "%%s і %d сподобалося це." +msgstr[2] "%%s і %d сподобалося це." + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "%%s сподобалося це." +msgstr[1] "%%s сподобалося це." +msgstr[2] "%%s сподобалося це." #. TRANS: Form legend. #, php-format diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index ab6708b463..4fa086b596 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -18,18 +18,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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-09-11 15:11:17+0000\n" +"X-POT-Import-Date: 2011-10-10 14:22:23+0000\n" #. TRANS: Database error message. #, php-format @@ -213,7 +214,6 @@ msgstr "没有这个页面。" #. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist. #. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname. #. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user. -#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user. #. TRANS: Client error displayed trying to make a micro summary without providing a valid user. #. TRANS: Client error displayed trying to send a direct message to a non-existing user. #. TRANS: Client error displayed trying to use "one time password login" without using an existing user. @@ -321,8 +321,6 @@ msgstr "发送邀请。" #. TRANS: %s is a username. #. TRANS: Menu item title in personal group navigation menu. #. TRANS: %s is a username. -#. TRANS: Menu item title in settings navigation panel. -#. TRANS: %s is a username. #, php-format msgid "%s and friends" msgstr "%s 和好友们" @@ -1928,6 +1926,79 @@ msgstr "加入收藏" msgid "No such document \"%s\"." msgstr "没有这样的文档\"%s\"。" +#. TRANS: Menu item in administrator navigation panel. +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in personal group navigation menu. +msgctxt "MENU" +msgid "Home" +msgstr "主页" + +msgctxt "MENU" +msgid "Docs" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to help on StatusNet. +msgctxt "MENU" +msgid "Help" +msgstr "帮助" + +#, fuzzy +msgid "Getting started" +msgstr "设置已保存。" + +#. TRANS: Secondary navigation menu item leading to text about StatusNet site. +msgctxt "MENU" +msgid "About" +msgstr "关于" + +#, fuzzy +msgid "About this site" +msgstr "取消屏蔽这个用户。" + +#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. +msgctxt "MENU" +msgid "FAQ" +msgstr "FAQ" + +msgid "Frequently asked questions" +msgstr "" + +#. TRANS: Secondary navigation menu item leading to e-mail contact information on the +#. TRANS: StatusNet site, where to report bugs, ... +msgctxt "MENU" +msgid "Contact" +msgstr "联系" + +#, fuzzy +msgid "Contact info" +msgstr "联系" + +#, fuzzy +msgctxt "MENU" +msgid "Tags" +msgstr "标签" + +msgid "Using tags" +msgstr "" + +#. TRANS: Menu item in default local navigation panel. +#. TRANS: Menu item in search group navigation panel. +#. TRANS: Menu item in local navigation menu. +msgctxt "MENU" +msgid "Groups" +msgstr "组" + +#, fuzzy +msgid "Using groups" +msgstr "用户小组" + +msgctxt "MENU" +msgid "API" +msgstr "" + +msgid "RESTful API" +msgstr "" + #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. msgid "Edit application" @@ -4174,44 +4245,6 @@ 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 list cloud. -msgid "Public list cloud" -msgstr "公开标签云" - -#. TRANS: Page notice for page with public list cloud. -#. TRANS: %s is a StatusNet sitename. -#, php-format -msgid "These are largest lists on %s" -msgstr "这些是 %s 上最流行的标签" - -#. 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 [listed](%%doc.tags%%) anyone yet." -msgstr "还没有人拥有 [名单] (%%doc.tags%%)。" - -#. 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 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 list " -"someone!" -msgstr "现在就[注册](%%action.register%%)并创建第一个名单!" - -#. TRANS: DT element on on page with public list cloud. -msgid "List cloud" -msgstr "名单云" - -#. TRANS: Link title for number of listed people. %d is the number of listed people. -#, php-format -msgid "1 person listed" -msgid_plural "%d people listed" -msgstr[0] "列表中有1人" - #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." @@ -4922,7 +4955,7 @@ msgid "FOAF for %s group" msgstr "%s 的发件箱" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help. #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). #, php-format @@ -4940,14 +4973,14 @@ msgstr "" "%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. -#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, +#. TRANS: %s is the group name, %%%%site.name%%%% is the site name, #. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link). -#, php-format +#, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " +"their life and interests." msgstr "" "**%s** 是%%%%site.name%%%%上的一个小组,%%%%site.name%%%%是一个基于自由软件 " "[StatusNet](http://status.net/) 的[微博客](http://zh.wikipedia.org/zh-hans/%" @@ -5070,11 +5103,6 @@ msgstr "显示全部" msgid "Subscribers" msgstr "关注者" -#. TRANS: Link for more "People following tag x" -#. TRANS: if there are more than the mini list's maximum. -msgid "All subscribers" -msgstr "所有关注者" - #. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format @@ -5166,11 +5194,11 @@ msgstr "" #. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. -#, php-format +#, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " +"[StatusNet](http://status.net/) tool." msgstr "" "**%s**在%%%%site.name%%%%有一个账号,%%%%site.name%%%%是一个基于自由软件" "[StatusNet](http://status.net/)的[微博客](http://zh.wikipedia.org/zh-hans/%" @@ -5665,13 +5693,12 @@ msgstr "这是%s关注的用户。" #. TRANS: This message contains Markdown URLs. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. -#, php-format +#, fuzzy, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " "people you know. Try [people search](%%action.peoplesearch%%), look for " "members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." +"featured%%)." msgstr "" "你现在还看不到其他人的消息,试着去关注一些你认识的人。试一下 [用户搜索](%%" "action.peoplesearch%%),在我们的 [推荐用户](%%action.featured%%) 中找一些你感" @@ -5999,21 +6026,23 @@ msgid "License" msgstr "许可协议" #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "StatusNet is free software: you can redistribute it and/or modify it under " "the terms of the GNU Affero General Public License as published by the Free " "Software Foundation, either version 3 of the License, or (at your option) " -"any later version. " +"any later version." msgstr "" "StatusNet 是一个免费软件,你可以在遵守自由软件基金会发布的 GNU Affero GPL 或" "第三版或以后的版本的情况下重新部署或者修改它," #. TRANS: Content part of StatusNet version page. +#, fuzzy msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License " -"for more details. " +"for more details." msgstr "" "这个程序的发布是希望它可以有用,但没有任何的担保;也没有售后性或者符合其他特" "别目的的担保。查看 GNU Affero GPL 了解更多信息。" @@ -6649,19 +6678,10 @@ msgid "saveSettings() not implemented." msgstr "saveSettings() 尚未实现。" #. TRANS: Header in administrator navigation panel. -#. TRANS: Header in settings navigation panel. msgctxt "HEADER" msgid "Home" msgstr "主页" -#. TRANS: Menu item in administrator navigation panel. -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in personal group navigation menu. -#. TRANS: Menu item in settings navigation panel. -msgctxt "MENU" -msgid "Home" -msgstr "主页" - #. TRANS: Header in administrator navigation panel. msgctxt "HEADER" msgid "Admin" @@ -7457,13 +7477,6 @@ msgctxt "MENU" msgid "Public" msgstr "公共" -#. TRANS: Menu item in default local navigation panel. -#. TRANS: Menu item in search group navigation panel. -#. TRANS: Menu item in local navigation menu. -msgctxt "MENU" -msgid "Groups" -msgstr "组" - #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. msgctxt "MENU" @@ -7681,6 +7694,11 @@ msgstr "显示全部" msgid "See all groups you belong to." msgstr "" +#. TRANS: Menu item title in personal group navigation menu. +#. TRANS: %s is a username. +msgid "Back to top" +msgstr "" + #. TRANS: Client exception 406 msgid "This page is not available in a media type you accept" msgstr "这个页面不提供你想要的媒体类型" @@ -8154,6 +8172,10 @@ msgstr "" #. 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. +#, fuzzy, php-format +msgid "%1$s has joined your group %2$s on %3$s" +msgstr "%1$s加入了%2$s小组。" + #. TRANS: Main body of group join notification e-mail. #. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename, #. TRANS: %4$s is a block of profile info about the subscriber. @@ -8892,21 +8914,6 @@ msgstr "搜索消息内容" msgid "Find groups on this site" msgstr "搜索本站小组" -#. TRANS: Secondary navigation menu item leading to help on StatusNet. -msgctxt "MENU" -msgid "Help" -msgstr "帮助" - -#. TRANS: Secondary navigation menu item leading to text about StatusNet site. -msgctxt "MENU" -msgid "About" -msgstr "关于" - -#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -msgctxt "MENU" -msgid "FAQ" -msgstr "FAQ" - #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" msgid "TOS" @@ -8927,17 +8934,6 @@ msgctxt "MENU" msgid "Version" msgstr "版本" -#. TRANS: Secondary navigation menu item leading to e-mail contact information on the -#. TRANS: StatusNet site, where to report bugs, ... -msgctxt "MENU" -msgid "Contact" -msgstr "联系" - -#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -msgctxt "MENU" -msgid "Badge" -msgstr "挂件" - #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" msgstr "无标题章节" @@ -9248,16 +9244,26 @@ msgid_plural "%%s like this." msgstr[0] "" #. TRANS: List message for notice repeated by logged in user. +#, fuzzy msgctxt "REPEATLIST" -msgid "You have repeated this notice." +msgid "You repeated this." msgstr "你有重复此通知。" -#. TRANS: List message for repeated notices. -#. TRANS: %d is the number of users that have repeated a notice. +#. TRANS: List message for when more than 4 people repeat something. +#. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. +#. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). #, php-format -msgid "One person has repeated this notice." -msgid_plural "%d people have repeated this notice." -msgstr[0] "一人又重复本通知书。 " +msgid "%%s and %d other repeated this." +msgid_plural "%%s and %d others repeated this." +msgstr[0] "" + +#. TRANS: List message for favoured notices. +#. TRANS: %%s is a list of users liking a notice. +#. TRANS: Plural is based on the number of of users that have favoured a notice. +#, fuzzy, php-format +msgid "%%s repeated this." +msgid_plural "%%s repeated this." +msgstr[0] "转发给%s" #. TRANS: Form legend. #, php-format diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index 3df79fdc19..ccbe5040a4 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 2196329765..b4925aa70b 100644 --- a/plugins/APC/locale/ast/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ast/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:39+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9e45f633d5..5b69b86a84 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:39+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 389ebc112f..586a491579 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5ad5a6c9bf..aa25aeb64a 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7391ac6b0a..9ecca1492c 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 857392c4b7..89d2ba3b0d 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9e5b13c375..6102bea75d 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c1bcd8bd7f..0c0ec93a8d 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9a8178bedf..3c7c8a68ef 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e0326a6a21..d2e795d7a0 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c39dfc6a3c..e16991e8c4 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" diff --git a/plugins/APC/locale/ms/LC_MESSAGES/APC.po b/plugins/APC/locale/ms/LC_MESSAGES/APC.po index 56e3f976e2..a8e9a8fe26 100644 --- a/plugins/APC/locale/ms/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ms/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\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 6468345493..0eec7d8d18 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4a5b9696f9..28921e6024 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: McDutchie +# Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" @@ -27,4 +29,4 @@ msgid "" "to cache query results." msgstr "" "De variabelencache APC " -"gebruiken op resultaten van zoekopdrachten te cachen." +"gebruiken om resultaten van zoekopdrachten te cachen." diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 16cf057041..d218b8e937 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5d2aacd169..d683a6bb4b 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:40+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2c69b4b373..e1b19de832 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:41+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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d33516f90e..d7534c5679 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4b6e5ea5b4..6e608e374c 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d31bf05c64..ba134cf620 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b5ebdeb44a..d6169e0924 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c4d202b295..4be4d08221 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 b152c6aca1..0c8cee51ee 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:28+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 abb5bf43c3..518bafd72a 100644 --- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:28+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8586cf3b77..4ce6bb2066 100644 --- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ed6787870e..84e75c8f79 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po new file mode 100644 index 0000000000..781fdd635e --- /dev/null +++ b/plugins/AccountManager/locale/eu/LC_MESSAGES/AccountManager.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - AccountManager to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AccountManager\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:28+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-accountmanager\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"The Account Manager plugin implements the Account Manager specification." +msgstr "" +"Kontu Kudeatzaile pluginak Kontu Kudeatzaile zehaztapenak ezartzen ditu." diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index 43b68d6f12..5812b1da7c 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fb09b450c0..568c1d2ddf 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po new file mode 100644 index 0000000000..96a174f66e --- /dev/null +++ b/plugins/AccountManager/locale/gl/LC_MESSAGES/AccountManager.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - AccountManager to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - AccountManager\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-accountmanager\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"The Account Manager plugin implements the Account Manager specification." +msgstr "" +"O complemento de xestión de contas aplica a especificación do xestor de " +"contas." diff --git a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po index 2656afd70f..5c43ee8503 100644 --- a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\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 cdc55685f4..269f90cf4b 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po index ad47ca5e19..118ac8fbf1 100644 --- a/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ja/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:29+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\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 dc952d3fca..a1e3ddebe5 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po index a0d5449553..53f31cf512 100644 --- a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\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 e95f34e13e..0e8230b7d4 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6bf9c6b968..e04cacecaa 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 47c091ecf9..5196a291b0 100644 --- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9d57731ca5..38f53791da 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c7866ef029..b4949ad442 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" diff --git a/plugins/Activity/locale/Activity.pot b/plugins/Activity/locale/Activity.pot index d06bc7d6db..2bcd74a3ba 100644 --- a/plugins/Activity/locale/Activity.pot +++ b/plugins/Activity/locale/Activity.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po new file mode 100644 index 0000000000..0988fc60fb --- /dev/null +++ b/plugins/Activity/locale/ar/LC_MESSAGES/Activity.po @@ -0,0 +1,118 @@ +# Translation of StatusNet - Activity to Arabic (العربية) +# Exported from translatewiki.net +# +# Author: OsamaK +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Activity\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:31+0000\n" +"Language-Team: Arabic \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-activity\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" + +#. TRANS: Text for "joined list" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a group home URL, %4$s is a group name. +#. TRANS: Text for "joined group" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a group URL, %4$s is a group name. +#, php-format +msgid "%2$s joined the group %4$s." +msgstr "%2$s انضم لمجموعة %4$s." + +#. TRANS: Text for "started following" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a profile URL, %4$s is a profile name. +#, php-format +msgid "%2$s started following %4$s." +msgstr "%2$s بدأ متابعة %4$s." + +#. TRANS: Text for "started following" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is a profile name, %4$s is a profile URL. +#, php-format +msgid "%1$s (%2$s) started following %3$s (%4$s)." +msgstr "%1$s (%2$s) بدأ متابعة %3$s (%4$s)." + +#. TRANS: Text for "stopped following" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a profile URL, %4$s is a profile name. +#, php-format +msgid "%2$s stopped following %4$s." +msgstr "%2$s توقف عن متابعة %4$s." + +#. TRANS: Text for "stopped following" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is a profile name, %4$s is a profile URL. +#, php-format +msgid "%1$s (%2$s) stopped following %3$s (%4$s)." +msgstr "%1$s (%2$s) توقف عن متابعة %3$s (%4$s)." + +#. TRANS: Text for "liked" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a notice URL, %4$s is an author name. +#, php-format +msgid "%2$s liked %4$s's update." +msgstr "%2$s أعجبه مستجد %4$s." + +#. TRANS: Text for "liked" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is an author name, %4$s is a notice URL. +#, php-format +msgid "%1$s (%2$s) liked %3$s's status (%4$s)." +msgstr "%1$s (%2$s) أعجبته حالة %3$s (%4$s)." + +#. TRANS: Text for "stopped liking" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a notice URL, %4$s is an author name. +#, php-format +msgid "" +"%2$s stopped liking %4$s's update." +msgstr "" +"%2$s لم يعد يعجبه مستجد %4$s." + +#. TRANS: Text for "stopped liking" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is an author name, %4$s is a notice URL. +#, php-format +msgid "%1$s (%2$s) stopped liking %3$s's status (%4$s)." +msgstr "%1$s (%2$s) لم تعد تعجبه حالة %3$s (%4$s)." + +#. TRANS: Text for "joined group" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is a group name, %4$s is a group URL. +#, php-format +msgid "%1$s (%2$s) joined the group %3$s (%4$s)." +msgstr "%1$s (%2$s) انضم لمجموعة %3$s (%4$s)." + +#. TRANS: Text for "left group" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a group URL, %4$s is a group name. +#, php-format +msgid "%2$s left the group %4$s." +msgstr "%2$s غادر مجموعة %4$s." + +#. TRANS: Text for "left group" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is a group name, %4$s is a group URL. +#, php-format +msgid "%1$s (%2$s) left the group %3$s (%4$s)." +msgstr "%1$s (%2$s) غادر مجموعة %3$s (%4$s)." + +#. TRANS: Plugin description. +msgid "Emits notices when social activities happen." +msgstr "" diff --git a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po index ad6fde7149..725eafb4b2 100644 --- a/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ca/LC_MESSAGES/Activity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-activity\n" @@ -34,10 +35,10 @@ msgstr "%2$s s'ha unit al grup %4$s." #. TRANS: Text for "started following" item in activity plugin. #. TRANS: %1$s is a profile URL, %2$s is a profile name, #. TRANS: %3$s is a profile URL, %4$s is a profile name. -#, fuzzy, php-format +#, php-format msgid "%2$s started following %4$s." msgstr "" -"%2$s ha començat a seguir %4$s." +"%2$s ha començat a seguir %4$s." #. TRANS: Text for "started following" item in activity plugin. #. TRANS: %1$s is a profile name, %2$s is a profile URL, diff --git a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po index 551b8d40d2..c0b3ca3b41 100644 --- a/plugins/Activity/locale/de/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/de/LC_MESSAGES/Activity.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Marcel083 +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-activity\n" @@ -35,9 +37,9 @@ msgstr "" #. TRANS: Text for "started following" item in activity plugin. #. TRANS: %1$s is a profile URL, %2$s is a profile name, #. TRANS: %3$s is a profile URL, %4$s is a profile name. -#, fuzzy, php-format +#, php-format msgid "%2$s started following %4$s." -msgstr "%2$s folgt jetzt %4$s." +msgstr "%2$s folgt jetzt %4$s." #. TRANS: Text for "started following" item in activity plugin. #. TRANS: %1$s is a profile name, %2$s is a profile URL, diff --git a/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po new file mode 100644 index 0000000000..81635c4018 --- /dev/null +++ b/plugins/Activity/locale/eu/LC_MESSAGES/Activity.po @@ -0,0 +1,125 @@ +# Translation of StatusNet - Activity to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Activity\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:31+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-activity\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Text for "joined list" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a group home URL, %4$s is a group name. +#. TRANS: Text for "joined group" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a group URL, %4$s is a group name. +#, php-format +msgid "%2$s joined the group %4$s." +msgstr "%2$s %4$s taldekoa da orain." + +#. TRANS: Text for "started following" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a profile URL, %4$s is a profile name. +#, php-format +msgid "%2$s started following %4$s." +msgstr "" +"%2$s %4$s jarraitzen hasi da." + +#. TRANS: Text for "started following" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is a profile name, %4$s is a profile URL. +#, php-format +msgid "%1$s (%2$s) started following %3$s (%4$s)." +msgstr "%1$s (%2$s) %3$s (%4$s) jarraitzen hasi da." + +#. TRANS: Text for "stopped following" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a profile URL, %4$s is a profile name. +#, php-format +msgid "%2$s stopped following %4$s." +msgstr "" +"%2$s(e)k %4$s jarraitzeari utzi " +"dio." + +#. TRANS: Text for "stopped following" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is a profile name, %4$s is a profile URL. +#, php-format +msgid "%1$s (%2$s) stopped following %3$s (%4$s)." +msgstr "%1$s(e)k (%2$s) %3$s (%4$s) jarraitzeari utzi dio." + +#. TRANS: Text for "liked" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a notice URL, %4$s is an author name. +#, php-format +msgid "%2$s liked %4$s's update." +msgstr "" +"%2$s(e)k %4$s(r)en eguneraketa " +"atsegin du." + +#. TRANS: Text for "liked" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is an author name, %4$s is a notice URL. +#, php-format +msgid "%1$s (%2$s) liked %3$s's status (%4$s)." +msgstr "%1$s(e)k (%2$s) %3$s(r)en egoera (%4$s) atsegin du." + +#. TRANS: Text for "stopped liking" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a notice URL, %4$s is an author name. +#, php-format +msgid "" +"%2$s stopped liking %4$s's update." +msgstr "" +"%2$s(r)i ez zaio dagoeneko %4$s(r)en " +"eguneraketa atsegin." + +#. TRANS: Text for "stopped liking" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is an author name, %4$s is a notice URL. +#, php-format +msgid "%1$s (%2$s) stopped liking %3$s's status (%4$s)." +msgstr "%1$s(r)i (%2$s) ez zaio dagoeneko %3$s(r)en egoera (%4$s) atsegin." + +#. TRANS: Text for "joined group" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is a group name, %4$s is a group URL. +#, php-format +msgid "%1$s (%2$s) joined the group %3$s (%4$s)." +msgstr "%1$s (%2$s) %3$s (%4$s) taldera batu da." + +#. TRANS: Text for "left group" item in activity plugin. +#. TRANS: %1$s is a profile URL, %2$s is a profile name, +#. TRANS: %3$s is a group URL, %4$s is a group name. +#, php-format +msgid "%2$s left the group %4$s." +msgstr "" +"%2$s(e)k %4$s taldea utzi du." + +#. TRANS: Text for "left group" item in activity plugin. +#. TRANS: %1$s is a profile name, %2$s is a profile URL, +#. TRANS: %3$s is a group name, %4$s is a group URL. +#, php-format +msgid "%1$s (%2$s) left the group %3$s (%4$s)." +msgstr "%1$s(e)k (%2$s) %3$s (%4$s) taldea utzi du." + +#. TRANS: Plugin description. +msgid "Emits notices when social activities happen." +msgstr "" +"Oharrak argitaratzen ditu iharduera bat dagoenean (lagun egin, taldekide " +"izan, taldea utzi...)." diff --git a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po index 3c2e0e1858..b216127704 100644 --- a/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ia/LC_MESSAGES/Activity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-activity\n" @@ -35,10 +36,10 @@ msgstr "" #. TRANS: Text for "started following" item in activity plugin. #. TRANS: %1$s is a profile URL, %2$s is a profile name, #. TRANS: %3$s is a profile URL, %4$s is a profile name. -#, fuzzy, php-format +#, php-format msgid "%2$s started following %4$s." msgstr "" -"%2$s comenciava a sequer %4$s." +"%2$s comenciava a sequer %4$s." #. TRANS: Text for "started following" item in activity plugin. #. TRANS: %1$s is a profile name, %2$s is a profile URL, diff --git a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po index 1d0f267b88..a95cf4feb4 100644 --- a/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/mk/LC_MESSAGES/Activity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-activity\n" @@ -35,10 +36,10 @@ msgstr "" #. TRANS: Text for "started following" item in activity plugin. #. TRANS: %1$s is a profile URL, %2$s is a profile name, #. TRANS: %3$s is a profile URL, %4$s is a profile name. -#, fuzzy, php-format +#, php-format msgid "%2$s started following %4$s." msgstr "" -"%2$s почна да го следи корисникот %4" +"%2$s почна да го следи корисникот %4" "$s." #. TRANS: Text for "started following" item in activity plugin. diff --git a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po index e9b8345fc2..ced9f7c4ba 100644 --- a/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/nl/LC_MESSAGES/Activity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-30 10:01:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-activity\n" @@ -36,9 +37,9 @@ msgstr "" #. TRANS: Text for "started following" item in activity plugin. #. TRANS: %1$s is a profile URL, %2$s is a profile name, #. TRANS: %3$s is a profile URL, %4$s is a profile name. -#, fuzzy, php-format +#, php-format msgid "%2$s started following %4$s." -msgstr "%2$s is %4$s gaan volgen." +msgstr "%2$s is %4$s gaan volgen." #. TRANS: Text for "started following" item in activity plugin. #. TRANS: %1$s is a profile name, %2$s is a profile URL, diff --git a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po index 9587504531..1a6baa34a1 100644 --- a/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po +++ b/plugins/Activity/locale/ru/LC_MESSAGES/Activity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Activity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:31+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-08-30 10:01:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-activity\n" diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index afcf861b67..07ba8802d5 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 9e9688aa72..c77ee1ff31 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 961c8da94e..b033fbc565 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 01b92fa255..167755372b 100644 --- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index f77897d7cd..8eaa2a690f 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -14,13 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c61db7a9fa..4425ae9458 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..4d61d32abf --- /dev/null +++ b/plugins/Adsense/locale/eu/LC_MESSAGES/Adsense.po @@ -0,0 +1,103 @@ +# Translation of StatusNet - Adsense to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# Author: Unai Fdz. de Betoño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +msgid "AdSense configuration" +msgstr "AdSense konfigurazioa" + +#. TRANS: Menu item for site administration +msgctxt "MENU" +msgid "AdSense" +msgstr "AdSense" + +#. TRANS: Plugin description. +msgid "Plugin to add Google AdSense to StatusNet sites." +msgstr "Google Adsense Statusnet guneetara gehitzeko plugina." + +#. TRANS: Title of AdSense administrator panel. +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#. TRANS: Instructions for AdSense administrator panel. +msgid "AdSense settings for this StatusNet site" +msgstr "AdSense aukerak StatusNet gune hontarako" + +#. TRANS: Field label in AdSense administration panel. +msgid "Client ID" +msgstr "ID bezeroa" + +#. TRANS: Field title in AdSense administration panel. +msgid "Google client ID." +msgstr "Google bezero IDa." + +#. TRANS: Field label in AdSense administration panel. +msgid "Ad script URL" +msgstr "Gehitu scriptaren URLa" + +#. TRANS: Field title in AdSense administration panel. +msgid "Script URL (advanced)." +msgstr "Scriptaren URLa (aurreratua)." + +#. TRANS: Field label in AdSense administration panel. +msgid "Medium rectangle" +msgstr "Laukizuzen ertaina" + +#. TRANS: Field title in AdSense administration panel. +msgid "Medium rectangle slot code." +msgstr "" + +#. TRANS: Field label in AdSense administration panel. +msgid "Rectangle" +msgstr "Laukizuzena" + +#. TRANS: Field title in AdSense administration panel. +msgid "Rectangle slot code." +msgstr "" + +#. TRANS: Field label in AdSense administration panel. +msgid "Leaderboard" +msgstr "" + +#. TRANS: Field title in AdSense administration panel. +msgid "Leaderboard slot code." +msgstr "" + +#. TRANS: Field label in AdSense administration panel. +msgid "Skyscraper" +msgstr "Etxe orratza" + +#. TRANS: Field title in AdSense administration panel. +msgid "Wide skyscraper slot code." +msgstr "" + +#. TRANS: Button text to save settings in AdSense administration panel. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gorde" + +#. TRANS: Button title to save settings in AdSense administration panel. +msgid "Save AdSense settings." +msgstr "" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index 5adea62c08..04966ac5e7 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -13,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e29f5ffb52..ac7f2fa6a9 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" @@ -48,9 +49,8 @@ msgid "Client ID" msgstr "Identificación do cliente" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Google client ID." -msgstr "Identificación do cliente de Google" +msgstr "Identificación do cliente de Google." #. TRANS: Field label in AdSense administration panel. msgid "Ad script URL" @@ -73,18 +73,16 @@ msgid "Rectangle" msgstr "Rectángulo" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Rectangle slot code." -msgstr "Rectángulo" +msgstr "Código disposto no rectángulo" #. TRANS: Field label in AdSense administration panel. msgid "Leaderboard" msgstr "Taboleiro de logros" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Leaderboard slot code." -msgstr "Taboleiro de logros" +msgstr "Código disposto no taboleiro de logros." #. TRANS: Field label in AdSense administration panel. msgid "Skyscraper" @@ -95,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 "Gardar" #. TRANS: Button title to save settings in AdSense administration panel. -#, fuzzy msgid "Save AdSense settings." -msgstr "Gardar a configuración de AdSense" +msgstr "Gardar a configuración de AdSense." diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 45249da6f8..194d4e2a97 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3861ac41a2..ab1309f58f 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0658cebcd7..48dba5742b 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:33+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 85f0691b7a..6c5cd23d2e 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po index 549cc7fb67..0d6bc0a1d4 100644 --- a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po index 6b30eb540e..881e600f40 100644 --- a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\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 5f1293ad49..8f96929bfd 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a22896cd93..a5d2ee3b2f 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a186f1738b..d1ca190f4d 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 dcdb72c122..f5db6c71c9 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Adsense to Russian (Русский) # Exported from translatewiki.net # +# Author: Eleferen # Author: Lockal # Author: Сrower # -- @@ -10,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" @@ -58,9 +60,8 @@ msgid "Ad script URL" msgstr "URL-адрес скрипта рекламы" #. TRANS: Field title in AdSense administration panel. -#, fuzzy msgid "Script URL (advanced)." -msgstr "URL-адрес скрипта (расширенная настройка)" +msgstr "URL-адрес скрипта (расширенная настройка)." #. TRANS: Field label in AdSense administration panel. msgid "Medium rectangle" @@ -99,12 +100,10 @@ msgid "Wide skyscraper slot code." msgstr "Слот-код широкого небоскреба" #. TRANS: Button text to save settings in AdSense administration panel. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" #. TRANS: Button title to save settings in AdSense administration panel. -#, fuzzy msgid "Save AdSense settings." -msgstr "Сохранить настройки AdSense" +msgstr "Сохранить настройки AdSense." diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index e155120672..b3c90d8f7e 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index caa29b2574..eb4f84efc0 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4310b7a038..4b3a2e5f38 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 db2067bf39..ce0dbac70b 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:34+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 29c86bb8bb..f93886080d 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 a3630477a9..8fa62734d7 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:35+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po index c0831a7213..a402d158c1 100644 --- a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po @@ -2,6 +2,8 @@ # Exported from translatewiki.net # # Author: Dvdgmz +# Author: Gemmaa +# Author: Toniher # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-aim\n" @@ -23,11 +26,11 @@ msgstr "" #. TRANS: No idea what the use case for this message is. msgid "Send me a message to post a notice" -msgstr "" +msgstr "Envia'm un missatge per publicar un avís" #. TRANS: Display name. msgid "AIM" -msgstr "" +msgstr "AIM" #. TRANS: Exception thrown in AIM plugin when user has not been specified. msgid "Must specify a user." @@ -41,3 +44,5 @@ msgstr "Has d'especificar una contrassenya" msgid "" "The AIM plugin allows users to send and receive notices over the AIM network." msgstr "" +"El connector XMPP permet als usuaris enviar i rebre avisos des de la xarxa " +"XMPP/Jabber." diff --git a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po index c91f73ed6d..eb47166496 100644 --- a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po index 39bfd8335e..d1a2a2178c 100644 --- a/plugins/Aim/locale/es/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/es/LC_MESSAGES/Aim.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po b/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po new file mode 100644 index 0000000000..d17104e88b --- /dev/null +++ b/plugins/Aim/locale/eu/LC_MESSAGES/Aim.po @@ -0,0 +1,46 @@ +# Translation of StatusNet - Aim to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Aim\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:35+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-aim\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: No idea what the use case for this message is. +msgid "Send me a message to post a notice" +msgstr "Bidali mezu bat niri oharra argitartzeko" + +#. TRANS: Display name. +msgid "AIM" +msgstr "AIM" + +#. TRANS: Exception thrown in AIM plugin when user has not been specified. +msgid "Must specify a user." +msgstr "Erabiltzaile bat zehaztu." + +#. TRANS: Exception thrown in AIM plugin when password has not been specified. +msgid "Must specify a password." +msgstr "Pasahitz bat zehaztu." + +#. TRANS: Plugin description. +msgid "" +"The AIM plugin allows users to send and receive notices over the AIM network." +msgstr "" +"AIM pluginak erabiltzaileei AIM sare bidez mezuak bidali eta jasotzea " +"ahalbidetzen die." diff --git a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po index f7c45ccb7a..0525a3cf60 100644 --- a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po index c5afd0c066..22e16a680c 100644 --- a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\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 90483df94e..cf1857787c 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 55546c62ec..1ca5a80f22 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" diff --git a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po index 98d7c27df6..922056a4cd 100644 --- a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\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 8861e2ee2f..4f2bb07222 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fd48572d18..013d997b24 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 45c2a76985..033076c819 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:36+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a8ca8ef4db..6268b2e41a 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ec2d56f303..48de024cb3 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1118c07553..1470e6810c 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po index fdb50a3c50..844ddbd602 100644 --- a/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po index 47063676bd..e63ebbc7ba 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" "Language-Team: Belarusian (Taraškievica orthography) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2aea88ba69..f4b7513813 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" diff --git a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po index 5db8a657bf..d6ed019d5c 100644 --- a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:38+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" @@ -37,10 +38,14 @@ msgstr "" msgid "" "Could not disfavor notice! Please make sure your browser has cookies enabled." msgstr "" +"No s'ha pogut marcar l'avís com a no preferit. Assegureu-vos que el " +"navegador té habilitades les galetes." #. TRANS: Client error. msgid "There was a problem with your session token. Try again, please." msgstr "" +"S'ha produït un problema amb el vostre testimoni de sessió. Torneu-ho a " +"provar." #. TRANS: Client error. msgid "This notice is not a favorite!" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index 4537b3ee10..b0aea4c454 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 221d0f15d2..d0a52df8f1 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 eb8a9a7c11..27dcc42e64 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6628cc84bc..b5cfcb5680 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" @@ -23,15 +24,15 @@ msgstr "" #. TRANS: Server exception. #. TRANS: %d is the notice ID (number). -#, fuzzy, php-format +#, php-format msgid "Could not update favorite tally for notice ID %d." -msgstr "Non se puido eliminar o favorito." +msgstr "Non se puido actualizar o favorito do aviso con ID %d." #. TRANS: Server exception. #. TRANS: %d is the notice ID (number). -#, fuzzy, php-format +#, php-format msgid "Could not create favorite tally for notice ID %d." -msgstr "Non se puido crear o favorito." +msgstr "Non se puido crear o favorito do aviso con ID %d." #. TRANS: Client error. msgid "" @@ -59,9 +60,8 @@ msgid "Favored" msgstr "" #. TRANS: Server exception. -#, fuzzy msgid "Could not create anonymous user session." -msgstr "Non se puido crear o favorito." +msgstr "Non se puido crear a sesión de usuario anónimo." #. TRANS: Plugin description. msgid "Allow anonymous users to favorite notices." diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index 4a68b2cc11..e91d97550c 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 57bdae31e0..4be0e6d38e 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8b7f9cf649..15f1512ccb 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5a34d15334..c14075226c 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0e15ffe3b8..1004d069c6 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 79d8d7c143..6a833c04ae 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:42:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2093f6dbcb..63d71510de 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 f2e9ec7a79..89e58bf23a 100644 --- a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po index 0ca5017b39..54f0e0f1a6 100644 --- a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po index 1e139f61d4..4116b10752 100644 --- a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po new file mode 100644 index 0000000000..416323fc98 --- /dev/null +++ b/plugins/ApiLogger/locale/gl/LC_MESSAGES/ApiLogger.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - ApiLogger to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# 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-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\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 "Permite dar unha mostra aleatoria das solicitudes do API." diff --git a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po index 64f436ec63..cee98eb293 100644 --- a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\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 53452007c3..f75efe69cb 100644 --- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po index 1a4008c4f2..8d2fd899a1 100644 --- a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:41+0000\n" "Language-Team: Colognian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ksh\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 41b0ad430b..9896744de7 100644 --- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po index 937694b25e..f690570832 100644 --- a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\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 89ae4a2fc6..b579d30ca2 100644 --- a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po index 46f04f4bb8..37ec473850 100644 --- a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\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 index 6a3d5b0094..0597528d81 100644 --- a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po index a0766a6f71..ad83fffd35 100644 --- a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 0b5eeeb27c..cf32d8892a 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 06c10a1530..ea0d5cf3ae 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:44+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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d8e8300b35..086d0ccb48 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 30ca172beb..fa71c5cc4f 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f9cfef8ff3..36226a298e 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a7b0bb38a3..b897ad55b5 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c5785fd73c..07b9f1c65d 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3576f836b7..bfefeab3a9 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f5b7c09e14..0d1e9aa848 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:44+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d914897be2..897acc6029 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4bc14a2abd..19a94340eb 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 76982cd3d4..3d4b7a727a 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 db8290dabc..f83fa30253 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 299c399c86..1f43c5f9d6 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po index cc1d27654f..36fecf52aa 100644 --- a/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po index e6120f0534..de8f1b01d1 100644 --- a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po index 370e7bac67..8500b68d88 100644 --- a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index d2075a6955..da9ea98f10 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:42+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index 39a3900d50..f6e5934923 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..a459618fe3 --- /dev/null +++ b/plugins/Autocomplete/locale/eu/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Autocomplete to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "The autocomplete plugin adds autocompletion for @ replies." +msgstr "Autocomplete pluginak @ erantzunak berez osatzen ditu." + +#. TRANS: Client exception in autocomplete plugin. +msgid "Access forbidden." +msgstr "Atzipena debekaturik." diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 14eafff1b9..481cb54bcd 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..190e9469f8 --- /dev/null +++ b/plugins/Autocomplete/locale/gl/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - Autocomplete to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "The autocomplete plugin adds autocompletion for @ replies." +msgstr "" +"O complemento de completar automaticamente engade o completado automático " +"para as respostas @." + +#. TRANS: Client exception in autocomplete plugin. +msgid "Access forbidden." +msgstr "Acceso prohibido." diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index 1f818c2fbd..45309d4ba4 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index f56fc8b5cb..7093177dad 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 af78ab62a8..c85f048480 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po index 0241f02442..1e3ee7bce2 100644 --- a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\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 1e99034021..b8093fb929 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..487bebe465 --- /dev/null +++ b/plugins/Autocomplete/locale/pl/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Autocomplete to Polish (Polski) +# Exported from translatewiki.net +# +# Author: Woytecr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:43+0000\n" +"Language-Team: Polish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: pl\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " +"(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Plugin description. +msgid "The autocomplete plugin adds autocompletion for @ replies." +msgstr "" + +#. TRANS: Client exception in autocomplete plugin. +msgid "Access forbidden." +msgstr "Dostęp zabroniony." diff --git a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po index e6870b0da0..01a9463c73 100644 --- a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 364354d80b..2005a60353 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 683816c810..74fc682384 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 533e80a61b..c426aae7b7 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 9d99729c57..29b4adf059 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:45+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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a7106b5c57..ce7f77f345 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 477da6638d..88b50813b0 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f7b44fb17f..41a3bd3631 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po new file mode 100644 index 0000000000..cdb53d9f4e --- /dev/null +++ b/plugins/Awesomeness/locale/gl/LC_MESSAGES/Awesomeness.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Awesomeness to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# 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-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-awesomeness\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description for a sample plugin. +msgid "" +"The Awesomeness plugin adds additional awesomeness to a StatusNet " +"installation." +msgstr "" +"O complemento impresionante engade suplementos impresionantes á instalación " +"do StatusNet." diff --git a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po index 55b3e85ac7..77eddc0ef0 100644 --- a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:45+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\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 0a8661f949..67985511e7 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d8231e629d..c54f5476bc 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3461fe450f..5173ccf333 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 df23cae53b..94b5687361 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1894b65d06..53e99c23b1 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 index 5a3a371859..9372c6040f 100644 --- a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:46+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index 017585460c..60750aa7e3 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cd0fe90728..8528b9e9ff 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 919eaa2e79..efee946835 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:47+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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 00dc3175b5..b8b47b22dc 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:47+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index aab9f5dda4..1b04689b50 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -5,6 +5,7 @@ # Author: Marcel083 # Author: Michael # Author: The Evil IP address +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -12,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -41,7 +43,6 @@ msgstr "" "benutzerdefinierte Domains." #. TRANS: Client error displayed when using too long a key. -#, fuzzy msgid "Invalid login. Maximum length is 255 characters." msgstr "Ungültige Anmeldung. Maximale Länge sind 255 Zeichen." diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 41d8e18ae5..d9977fd40e 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po index 670ee9fa37..871efc3b51 100644 --- a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:47+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po index 04f4d2ac3f..138570bf75 100644 --- a/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/gl/LC_MESSAGES/BitlyUrl.po @@ -9,21 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" -"PO-Revision-Date: 2011-04-09 18:36:37+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:48+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:20+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Title of administration panel. msgid "bit.ly URL shortening" -msgstr "" +msgstr "Servizo de acurtamento de enderezos URL bit.ly" #. TRANS: Instructions for administration panel. #. TRANS: This message contains Markdown links in the form [decsription](link). @@ -34,19 +35,17 @@ msgid "" msgstr "" #. TRANS: Client error displayed when using too long a key. -#, fuzzy msgid "Invalid login. Maximum length is 255 characters." msgstr "Rexistro incorrecto. A extensión máxima é de 255 caracteres." #. TRANS: Client error displayed when using too long a key. -#, fuzzy msgid "Invalid API key. Maximum length is 255 characters." msgstr "Clave API incorrecta. A extensión máxima é de 255 caracteres." #. TRANS: Fieldset legend in administration panel for bit.ly username and API key. msgctxt "LEGEND" msgid "Credentials" -msgstr "" +msgstr "Credenciais" #. TRANS: Form guide in administration panel for bit.ly URL shortening. msgid "Leave these empty to use global default credentials." @@ -62,12 +61,12 @@ msgstr "Nome de usuario" #. TRANS: Field label in administration panel for bit.ly URL shortening. msgid "API key" -msgstr "" +msgstr "Clave API" #. TRANS: Button text to save setting in administration panel for bit.ly URL shortening. msgctxt "BUTTON" msgid "Save" -msgstr "" +msgstr "Gardar" #. TRANS: Button title to save setting in administration panel for bit.ly URL shortening. msgid "Save bit.ly settings" @@ -76,6 +75,8 @@ msgstr "Gardar a configuración 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 "" +"Debe especificar un serviceUrl para o servizo de abreviación de enderezos " +"URL bit.ly." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format @@ -86,8 +87,8 @@ msgstr "" #. TRANS: Menu item in administration menus for bit.ly URL shortening settings. msgid "bit.ly" -msgstr "" +msgstr "bit.ly" #. TRANS: Title for menu item in administration menus for bit.ly URL shortening settings. msgid "bit.ly URL shortening." -msgstr "" +msgstr "Servizo de acurtamento de enderezos URL bit.ly." diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 1949e6db30..2bc2b8772f 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8070765021..0ae73df628 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cfbf9c0ebe..be591baebb 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4ff01f05e1..95e6e7d0cd 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e4a60449f9..8375dc49cd 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po index 837aac8542..514f0d84ad 100644 --- a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:48+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 07b9d90843..b46c05a797 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index 7b0fc75115..db032e9597 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 abfef3edb0..1f9ea432a3 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 d09933986f..c0ab9fa0e1 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:50+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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 24adc19d13..5d53a20f4b 100644 --- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index d4129640e6..07dbd13c35 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7077e72aee..8c44a11375 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3c43187dc4..bda23ed5e6 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e5be910ef8..b6b44f503e 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9a82821047..e1da2def9f 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 17401ef9a7..b8a36b4b2d 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" @@ -65,10 +66,9 @@ msgid "Blacklist" msgstr "Чёрный список" #. TRANS: Tooltip for menu item in admin panel. -#, fuzzy msgctxt "TOOLTIP" msgid "Blacklist configuration." -msgstr "Конфигурация чёрного списка" +msgstr "Конфигурация чёрного списка." #. TRANS: Checkbox label in the blacklist user form. msgid "Add this nickname pattern to blacklist" @@ -123,7 +123,6 @@ msgid "Patterns of URLs to block, one per line." msgstr "Шаблоны URL-адресов для блокировки, по одному на строку" #. TRANS: Button text in blacklist plugin administration panel to save settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" diff --git a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po index 4e51503564..89071404ef 100644 --- a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:51+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3a9679eebd..a9adedbf51 100644 --- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index c255421ddb..5b4ae520cb 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a073fce2f9..9527647e25 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:52+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 143139cc44..bcd7eef85e 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ast/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po index 363c7a393f..f3f887a081 100644 --- a/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ast/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po index 92dd0018ac..144c1b4990 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:53+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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7ea9e14d02..d18a0ffe5c 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 173cc56303..de8b0f6c38 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b7dc09c30e..98bf528040 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 346811706d..9a86e899ee 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a0e7849bed..b576e35787 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po new file mode 100644 index 0000000000..317eef5ee6 --- /dev/null +++ b/plugins/BlankAd/locale/gl/LC_MESSAGES/BlankAd.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlankAd to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlankAd\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:53+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-blankad\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Plugin for testing ad layout." +msgstr "Complemento para probar o deseño dos anuncios." diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index 68dabb40d2..573cf0a1ed 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a55bcac33b..bf002b3e75 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f16cfb9ce0..ba34ceabf1 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 61889854e9..38dfd53baf 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d575820551..5ce95ab1a6 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8619f70f87..4d94215e03 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 88f959a1c9..b48e924b5d 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2e07066dcc..2fa28f68aa 100644 --- a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c3c124442b..1214fc075f 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b54e0f2d31..3254884917 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ca0cbd34ec..1e68fe5a03 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:54+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" diff --git a/plugins/Blog/locale/Blog.pot b/plugins/Blog/locale/Blog.pot index 5aee7282aa..4fd362163e 100644 --- a/plugins/Blog/locale/Blog.pot +++ b/plugins/Blog/locale/Blog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po index 5041b1b6de..c2c6c2356b 100644 --- a/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ar/LC_MESSAGES/Blog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:56+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-blog\n" diff --git a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po index 0bae107ea7..2b319d329d 100644 --- a/plugins/Blog/locale/br/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/br/LC_MESSAGES/Blog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blog\n" diff --git a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po index 89c61a115f..6ea399194d 100644 --- a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:56+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blog\n" @@ -61,7 +62,7 @@ msgstr "Verb desconegut de les entrades de blog." #. TRANS: Exception thrown when requesting a non-existing blog entry for notice. #, php-format msgid "No blog entry for notice %s." -msgstr "" +msgstr "No hi ha entrada de blog de l'avís %s." #. TRANS: Client exception thrown when referring to a non-existing blog entry. msgid "No such entry." diff --git a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po index 4527ebca54..13033e3c08 100644 --- a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po @@ -3,6 +3,7 @@ # # Author: Inkowik # Author: Marcel083 +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blog\n" @@ -84,7 +86,7 @@ msgstr "Titel des Blog-Eintrags" #. TRANS: Field label on blog entry form. msgctxt "LABEL" msgid "Text" -msgstr "" +msgstr "Text" #. TRANS: Field title on blog entry form. msgid "Text of the blog entry." diff --git a/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po new file mode 100644 index 0000000000..55ca537602 --- /dev/null +++ b/plugins/Blog/locale/eu/LC_MESSAGES/Blog.po @@ -0,0 +1,96 @@ +# Translation of StatusNet - Blog to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:56+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-08-20 19:38:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-blog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown when trying to post a blog entry while not logged in. +msgid "Must be logged in to post a blog entry." +msgstr "Saioa hasi behar duzu blogean sarrera bat idazteko." + +#. TRANS: Client exception thrown when trying to post a blog entry without providing a title. +msgid "Title required." +msgstr "Titulua beharrezkoa." + +#. TRANS: Client exception thrown when trying to post a blog entry without providing content. +msgid "Content required." +msgstr "Edukia beharrezkoa." + +#. TRANS: Page title after sending a notice. +msgid "Blog entry saved" +msgstr "Blog sarrera gordea" + +#. TRANS: Plugin description. +msgid "Let users write and share long-form texts." +msgstr "Erabiltzaileei testu luzeak idatzi eta partekatzen uzten die." + +#. TRANS: Blog application title. +msgctxt "TITLE" +msgid "Blog" +msgstr "Bloga" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "Jarduera objetu gehiegi." + +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. +msgid "Wrong type for object." +msgstr "Objetuarentzat moeta okerra." + +#. TRANS: Exception thrown when blog plugin comes across a undefined verb. +msgid "Unknown verb for blog entries." +msgstr "Aditz ezezaguna blog sarerrentzat." + +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#, php-format +msgid "No blog entry for notice %s." +msgstr "%s oharrarentzat ez dago blog sarrerarik." + +#. TRANS: Client exception thrown when referring to a non-existing blog entry. +msgid "No such entry." +msgstr "Ez dago sarrera hori." + +#. TRANS: Title for a blog entry without a title. +msgid "Untitled" +msgstr "Titulurik gabea" + +#. TRANS: Field label on blog entry form. +msgctxt "LABEL" +msgid "Title" +msgstr "Titulua" + +#. TRANS: Field title on blog entry form. +msgid "Title of the blog entry." +msgstr "Blog sarreraren titulua." + +#. TRANS: Field label on blog entry form. +msgctxt "LABEL" +msgid "Text" +msgstr "Testua" + +#. TRANS: Field title on blog entry form. +msgid "Text of the blog entry." +msgstr "Blog sarreraren testua." + +#. TRANS: Button text to save a blog entry. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gorde" diff --git a/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po new file mode 100644 index 0000000000..c52fece9d1 --- /dev/null +++ b/plugins/Blog/locale/fr/LC_MESSAGES/Blog.po @@ -0,0 +1,97 @@ +# Translation of StatusNet - Blog to French (Français) +# Exported from translatewiki.net +# +# Author: Karl1263 +# Author: Od1n +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-20 19:38:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: #out-statusnet-plugin-blog\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Client exception thrown when trying to post a blog entry while not logged in. +msgid "Must be logged in to post a blog entry." +msgstr "Vous devez être connecté pour publier un billet." + +#. TRANS: Client exception thrown when trying to post a blog entry without providing a title. +msgid "Title required." +msgstr "Titre requis." + +#. TRANS: Client exception thrown when trying to post a blog entry without providing content. +msgid "Content required." +msgstr "Contenu requis." + +#. TRANS: Page title after sending a notice. +msgid "Blog entry saved" +msgstr "Billet enregistré" + +#. TRANS: Plugin description. +msgid "Let users write and share long-form texts." +msgstr "" + +#. TRANS: Blog application title. +msgctxt "TITLE" +msgid "Blog" +msgstr "" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "" + +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. +msgid "Wrong type for object." +msgstr "" + +#. TRANS: Exception thrown when blog plugin comes across a undefined verb. +msgid "Unknown verb for blog entries." +msgstr "" + +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#, php-format +msgid "No blog entry for notice %s." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing blog entry. +msgid "No such entry." +msgstr "" + +#. TRANS: Title for a blog entry without a title. +msgid "Untitled" +msgstr "Sans titre" + +#. TRANS: Field label on blog entry form. +msgctxt "LABEL" +msgid "Title" +msgstr "Titre" + +#. TRANS: Field title on blog entry form. +msgid "Title of the blog entry." +msgstr "" + +#. TRANS: Field label on blog entry form. +msgctxt "LABEL" +msgid "Text" +msgstr "Texte" + +#. TRANS: Field title on blog entry form. +msgid "Text of the blog entry." +msgstr "" + +#. TRANS: Button text to save a blog entry. +msgctxt "BUTTON" +msgid "Save" +msgstr "Enregistrer" diff --git a/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po new file mode 100644 index 0000000000..e8a9be43bf --- /dev/null +++ b/plugins/Blog/locale/gl/LC_MESSAGES/Blog.po @@ -0,0 +1,96 @@ +# Translation of StatusNet - Blog to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Blog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-20 19:38:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-blog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown when trying to post a blog entry while not logged in. +msgid "Must be logged in to post a blog entry." +msgstr "" + +#. TRANS: Client exception thrown when trying to post a blog entry without providing a title. +msgid "Title required." +msgstr "O título é obrigatorio" + +#. TRANS: Client exception thrown when trying to post a blog entry without providing content. +msgid "Content required." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Blog entry saved" +msgstr "" + +#. TRANS: Plugin description. +msgid "Let users write and share long-form texts." +msgstr "" + +#. TRANS: Blog application title. +msgctxt "TITLE" +msgid "Blog" +msgstr "Blogue" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "" + +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. +msgid "Wrong type for object." +msgstr "" + +#. TRANS: Exception thrown when blog plugin comes across a undefined verb. +msgid "Unknown verb for blog entries." +msgstr "" + +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#, php-format +msgid "No blog entry for notice %s." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing blog entry. +msgid "No such entry." +msgstr "" + +#. TRANS: Title for a blog entry without a title. +msgid "Untitled" +msgstr "Sen título" + +#. TRANS: Field label on blog entry form. +msgctxt "LABEL" +msgid "Title" +msgstr "Título" + +#. TRANS: Field title on blog entry form. +msgid "Title of the blog entry." +msgstr "" + +#. TRANS: Field label on blog entry form. +msgctxt "LABEL" +msgid "Text" +msgstr "Texto" + +#. TRANS: Field title on blog entry form. +msgid "Text of the blog entry." +msgstr "" + +#. TRANS: Button text to save a blog entry. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" diff --git a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po index 7fd9b3d10f..5563ed68b9 100644 --- a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blog\n" diff --git a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po index f80807bfce..2d24141b50 100644 --- a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blog\n" diff --git a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po index da70d5fa84..a4b55b2208 100644 --- a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03: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-08-20 19:38:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blog\n" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 9e4c290cbb..20c0afccf3 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index ebdc6d62d6..d60b10f6a1 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index df49c9e21c..155accfbd5 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index f41337b4b1..dfea5d7cf4 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0b2a8f7d11..b9aa68d221 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 020b8dd221..33ca0ddab7 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index 61822dcc0b..d3457a7399 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:03:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 580436ffa8..27239890f1 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:00+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9829e308dd..14e70ce6f9 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c80e570bc9..24437be049 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" diff --git a/plugins/Bookmark/bookmarkforurl.php b/plugins/Bookmark/bookmarkforurl.php index 018bd5c9e4..e4dedf4a48 100644 --- a/plugins/Bookmark/bookmarkforurl.php +++ b/plugins/Bookmark/bookmarkforurl.php @@ -78,7 +78,13 @@ class BookmarkforurlAction extends Action throw new ClientException(_('Invalid URL.'), 400); } - $f = File::processNew($this->url); + $f = File::staticGet('url', $this->url); + + if (empty($url)) { + $f = File::processNew($this->url); + } + + // How about now? if (!empty($f)) { $this->oembed = File_oembed::staticGet('file_id', $f->id); diff --git a/plugins/Bookmark/bookmarklet b/plugins/Bookmark/bookmarklet index fc1f8b9d05..31a0ac4935 100644 --- a/plugins/Bookmark/bookmarklet +++ b/plugins/Bookmark/bookmarklet @@ -6,4 +6,4 @@ A bookmarklet is a small piece of javascript code used as a bookmark. This one w Drag-and-drop the following link to your bookmarks bar or right-click it and add it to your browser favorites to keep it handy. -Bookmark on %%site.name%% +Bookmark on %%site.name%% diff --git a/plugins/Bookmark/bookmarklistitem.php b/plugins/Bookmark/bookmarklistitem.php index d099c75ecd..a2dbf8156d 100644 --- a/plugins/Bookmark/bookmarklistitem.php +++ b/plugins/Bookmark/bookmarklistitem.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Adapter to show bookmarks in a nicer way - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -60,29 +60,38 @@ class BookmarkListItem extends NoticeListItemAdapter $notice = $this->nli->notice; $out = $this->nli->out; - $out->elementStart('p', array('class' => 'entry-content')); - $nb = Bookmark::getByNotice($notice); + if (empty($nb)) { + common_log(LOG_ERR, "No bookmark for notice {$notice->id}"); + parent::showContent(); + return; + } else if (empty($nb->url)) { + common_log(LOG_ERR, "No url for bookmark {$nb->id} for notice {$notice->id}"); + parent::showContent(); + return; + } + $profile = $notice->getProfile(); - $atts = $notice->attachments(); + $out->elementStart('p', array('class' => 'entry-content')); - if (count($atts) < 1) { - // Something wrong; let default code deal with it. - // TRANS: Exception thrown when a bookmark has no attachments. - // TRANS: %1$s is a bookmark ID, %2$s is a notice ID (number). - throw new Exception(sprintf(_m('Bookmark %1$s (notice %2$d) has no attachments.'), - $nb->id, - $notice->id)); + // Whether to nofollow + + $attrs = array('href' => $nb->url, + 'class' => 'bookmark-title'); + + $nf = common_config('nofollow', 'external'); + + if ($nf == 'never' || ($nf == 'sometimes' and $out instanceof ShowstreamAction)) { + $attrs['rel'] = 'external'; + } else { + $attrs['rel'] = 'nofollow external'; } - $att = $atts[0]; - $out->elementStart('h3'); $out->element('a', - array('href' => $att->url, - 'class' => 'bookmark-title'), + $attrs, $nb->title); $out->elementEnd('h3'); diff --git a/plugins/Bookmark/bookmarkpopup.php b/plugins/Bookmark/bookmarkpopup.php index 3defe08d30..1400c0a1ea 100644 --- a/plugins/Bookmark/bookmarkpopup.php +++ b/plugins/Bookmark/bookmarkpopup.php @@ -70,7 +70,7 @@ class BookmarkpopupAction extends NewbookmarkAction $this->elementStart('div', array('id' => 'header')); $this->elementStart('address'); $this->element('a', array('class' => 'url', - 'href' => common_local_url('public')), + 'href' => common_local_url('top')), ''); $this->elementEnd('address'); if (common_logged_in()) { diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 993475ed02..4947aa4d09 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,13 +65,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "" -#. TRANS: Exception thrown when a bookmark has no attachments. -#. TRANS: %1$s is a bookmark ID, %2$s is a notice ID (number). -#: bookmarklistitem.php:75 -#, php-format -msgid "Bookmark %1$s (notice %2$d) has no attachments." -msgstr "" - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #: bookmarkpopup.php:57 diff --git a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index 52b81bfb5a..53d2cf256f 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Bookmark to Arabic (العربية) # Exported from translatewiki.net # +# Author: Majid Al-Dharrab # Author: Mutarjem horr # Author: OsamaK # -- @@ -10,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:03+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -34,7 +36,7 @@ msgstr "" #. TRANS: Client exception thrown when referring to a non-existing bookmark. msgid "No such bookmark." -msgstr "لا يوجد علامة كهذه." +msgstr "العلامة المقصودة غير موجودة." #. TRANS: Title for bookmark. #. TRANS: %1$s is a user nickname, %2$s is a bookmark title. @@ -64,12 +66,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "علامة" -#. 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 "" - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format @@ -197,12 +193,11 @@ msgstr "الملف \"%s\" غير قابل للقراءة." msgid "" "Bookmarks have been imported. Your bookmarks should now appear in search and " "your profile page." -msgstr "" -"تم استيراد العلامات. ينبغي أن تظهر علاماتك الآن عند البحث وفي صفحتك الشخصية." +msgstr "استوردت العلامات. ستظهر علاماتك الآن عند البحث وفي صفحتك الشخصية." #. TRANS: Busy message for importing bookmarks. msgid "Bookmarks are being imported. Please wait a few minutes for results." -msgstr "يتم استيراد العلامات. الرجاء الانتظار دقائق معدودة لتظهر النتيجة." +msgstr "يستورد العلامات. الرجاء الانتظار دقائق معدودة لتظهر النتيجة." #. TRANS: Form instructions for importing bookmarks. msgid "You can upload a backed-up delicious.com bookmarks file." diff --git a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po index f32b84a348..dfc9c6db61 100644 --- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:03+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -40,7 +41,7 @@ msgstr "No existeix l'adreça d'interès." #. TRANS: %1$s is a user nickname, %2$s is a bookmark title. #, php-format msgid "%1$s's bookmark for \"%2$s\"" -msgstr "" +msgstr "Adreça d'interès de %1$s per a «%2$s»" #. TRANS: Plugin description. msgid "Simple extension for supporting bookmarks." @@ -53,7 +54,7 @@ msgstr "Importa adreces d'interès del del.icio.us" #. TRANS: Client exception thrown when a bookmark is formatted incorrectly. msgid "Expected exactly 1 link rel=related in a Bookmark." -msgstr "" +msgstr "S'esperava exactament 1 enllaç rel=related en una adreça d'interès." #. TRANS: Server exception thrown when a bookmark has multiple attachments. msgid "Bookmark notice with the wrong number of attachments." @@ -62,13 +63,7 @@ msgstr "Avís d'adreça d'interès amb un nombre incorrecte d'adjuncions." #. TRANS: Application title. msgctxt "TITLE" msgid "Bookmark" -msgstr "Adreça d'interès" - -#. 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 "Adreça" #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. @@ -139,33 +134,37 @@ msgstr "No podeu restaurar el compte." #. TRANS: Client exception thrown when trying to import bookmarks and upload fails. #. TRANS: Client exception thrown when a file upload has failed. msgid "No uploaded file." -msgstr "" +msgstr "No hi ha cap fitxer pujat." #. 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 "" +"El fitxer pujat excedeix allò que s'especifica a la directiva " +"upload_max_filesize de 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 "" +"El fitxer pujat excedeix allò que s'estableix a la directiva MAX_FILE_SIZE " +"especificada al formulari HTML." #. TRANS: Client exception thrown when a file was only partially uploaded. msgid "The uploaded file was only partially uploaded." -msgstr "" +msgstr "El fitxer pujat només ho ha estat parcialment." #. TRANS: Client exception thrown when a temporary folder is not present. msgid "Missing a temporary folder." -msgstr "" +msgstr "Manca una carpeta temporal." #. TRANS: Client exception thrown when writing to disk is not possible. msgid "Failed to write file to disk." -msgstr "" +msgstr "No s'ha pogut escriure el fitxer al disc." #. TRANS: Client exception thrown when a file upload has been stopped. msgid "File upload stopped by extension." -msgstr "" +msgstr "Una extensió ha aturat la pujada del fitxer." #. TRANS: Client exception thrown when a file upload operation has failed. msgid "System error uploading file." @@ -193,21 +192,27 @@ msgstr "No és un fitxer regular: «%s»." #. TRANS: %s is the file that could not be read. #, php-format msgid "File \"%s\" not readable." -msgstr "" +msgstr "El fitxer «%s» no es pot llegir." #. TRANS: Success message after importing bookmarks. msgid "" "Bookmarks have been imported. Your bookmarks should now appear in search and " "your profile page." msgstr "" +"S'han importat les adreces d'interès. Les vostres adreces d'interès haurien " +"d'aparèixer ara a la cerca i a la vostra pàgina de perfil." #. TRANS: Busy message for importing bookmarks. msgid "Bookmarks are being imported. Please wait a few minutes for results." msgstr "" +"S'estan important les adreces d'interès. Espereu uns pocs minuts per a " +"veure'n els resultats." #. TRANS: Form instructions for importing bookmarks. msgid "You can upload a backed-up delicious.com bookmarks file." msgstr "" +"Podeu pujar una fitxer de còpia de seguretat d'adreces d'interès de " +"delicious.com." #. TRANS: Button text on form to import bookmarks. msgctxt "BUTTON" @@ -265,4 +270,4 @@ 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 "" +msgstr "S'està recuperant la còpia de seguretat del fitxer \"%s\"." diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index 64af86e791..caa690bdd0 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -62,12 +63,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "Lesezeichen" -#. 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 "Lesezeichen %1$s (Notiz %2$d) hat keine Anhänge." - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format diff --git a/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po new file mode 100644 index 0000000000..98d6f1caae --- /dev/null +++ b/plugins/Bookmark/locale/eu/LC_MESSAGES/Bookmark.po @@ -0,0 +1,264 @@ +# Translation of StatusNet - Bookmark to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Bookmark\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:03+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-bookmark\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown when a bookmark in an import file is incorrectly formatted. +msgid "No tag in a
." +msgstr "Ez dago etiketari
batean." + +#. TRANS: Client exception thrown when a bookmark in an import file is private. +msgid "Skipping private bookmark." +msgstr "Lastermarka pribatutik irteten." + +#. TRANS: Client exception thrown when referring to a non-existing bookmark. +msgid "No such bookmark." +msgstr "Ez dago lastermarka hori." + +#. TRANS: Title for bookmark. +#. TRANS: %1$s is a user nickname, %2$s is a bookmark title. +#, php-format +msgid "%1$s's bookmark for \"%2$s\"" +msgstr "%1$s(r)en \"%2$s\" lastermarkak" + +#. TRANS: Plugin description. +msgid "Simple extension for supporting bookmarks." +msgstr "Lastermarkak jasateko oinarrizko hedapena" + +#. 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 "Inportatu del.icio.us-eko lastermarkak" + +#. TRANS: Client exception thrown when a bookmark is formatted incorrectly. +msgid "Expected exactly 1 link rel=related in a Bookmark." +msgstr "Lastermarka batean rel=related esteka bat espero zen." + +#. TRANS: Server exception thrown when a bookmark has multiple attachments. +msgid "Bookmark notice with the wrong number of attachments." +msgstr "Lastermarka oharra eranskin kopuru okerrarekin." + +#. TRANS: Application title. +msgctxt "TITLE" +msgid "Bookmark" +msgstr "Lastermarka" + +#. TRANS: Title for mini-posting window loaded from bookmarklet. +#. TRANS: %s is the StatusNet site name. +#, php-format +msgid "Bookmark on %s" +msgstr "%s(e)n lastermarkak" + +#. TRANS: Client exception thrown when trying to save a new bookmark that already exists. +msgid "Bookmark already exists." +msgstr "Lastermarka hori existizen da jada." + +#. TRANS: Bookmark content. +#. TRANS: %1$s is a title, %2$s is a short URL, %3$s is the bookmark description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "\"%1$s\" %2$s %3$s %4$s" +msgstr "\"%1$s\" %2$s %3$s %4$s" + +#. TRANS: Rendered bookmark content. +#. TRANS: %1$s is a URL, %2$s the bookmark title, %3$s is the bookmark description, +#. TRANS: %4$s is space separated list of hash tags. +#, php-format +msgid "" +"%2$s " +"%3$s %4$s" +msgstr "" +"%2$s " +"%3$s %4$s" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +#. TRANS: Button text for action to save a new bookmark. +msgctxt "BUTTON" +msgid "Add" +msgstr "Gehitu" + +#. TRANS: Client exception thrown when an unknown URL is provided. +msgid "Unknown URL." +msgstr "URL ezezaguna." + +#. TRANS: Title of notice stream of notices with a given attachment (first page). +#. TRANS: %s is the URL. +#, php-format +msgid "Notices linking to %s" +msgstr "%s(r)a estekatzen duten oharrak" + +#. TRANS: Title of notice stream of notices with a given attachment (all but first page). +#. TRANS: %1$s is the URL, %2$s is the page number. +#, php-format +msgid "Notices linking to %1$s, page %2$d" +msgstr "%1$s(r)a estekatzen duten oharrak, %2$d. orria" + +#. 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 "" +"Izen emandako erabiltzaileek soilik inporta ditzakete del.icio.us " +"babeskopiak." + +#. TRANS: Client exception thrown when trying to import bookmarks without having the rights to do so. +msgid "You may not restore your account." +msgstr "Ez zenuke zure kontua leheneratu behar." + +#. TRANS: Client exception thrown when trying to import bookmarks and upload fails. +#. TRANS: Client exception thrown when a file upload has failed. +msgid "No uploaded file." +msgstr "Ez dago igotako fitxategirik." + +#. 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 "" +"php.ini-ko upload_max_filesize aldagaia gainditzen du igotako fitxategiak." + +#. 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 "" +"HTML inprimakiko MAX_FILE_SIZE aldagaia gainditzen du igotako fitxategiak.." + +#. TRANS: Client exception thrown when a file was only partially uploaded. +msgid "The uploaded file was only partially uploaded." +msgstr "Igotako fitxategiaren zati bat soilik igo da." + +#. TRANS: Client exception thrown when a temporary folder is not present. +msgid "Missing a temporary folder." +msgstr "Karpeta tenporala falta da." + +#. TRANS: Client exception thrown when writing to disk is not possible. +msgid "Failed to write file to disk." +msgstr "Fitxategia diskoan idaztean akatsa." + +#. TRANS: Client exception thrown when a file upload has been stopped. +msgid "File upload stopped by extension." +msgstr "Fitxategi igoera gelditu egin da luzapen okerragatik." + +#. TRANS: Client exception thrown when a file upload operation has failed. +msgid "System error uploading file." +msgstr "Fitxateiga igotzean sistema akatsa." + +#. TRANS: Server exception thrown when a file upload cannot be found. +#. TRANS: %s is the file that could not be found. +#. TRANS: Exception thrown when a file upload cannot be found. +#. TRANS: %s is the file that could not be found. +#, php-format +msgid "No such file \"%s\"." +msgstr "Ez dago \"%s\" fitxategirik." + +#. TRANS: Server exception thrown when a file upload is incorrect. +#. TRANS: %s is the irregular file. +#. TRANS: Exception thrown when a file upload is incorrect. +#. TRANS: %s is the irregular file. +#, php-format +msgid "Not a regular file: \"%s\"." +msgstr "Ez da fitxategi erregularra: \"%s\"." + +#. TRANS: Server exception thrown when a file upload is not readable. +#. TRANS: %s is the file that could not be read. +#. TRANS: Exception thrown when a file upload is not readable. +#. TRANS: %s is the file that could not be read. +#, php-format +msgid "File \"%s\" not readable." +msgstr "\"%s\" fitxategia irakurtezina." + +#. TRANS: Success message after importing bookmarks. +msgid "" +"Bookmarks have been imported. Your bookmarks should now appear in search and " +"your profile page." +msgstr "" +"Lastermarkak inportatu dira. Zure lastermarkak bilaketan eta zure profilean " +"agertu beharko lukete." + +#. TRANS: Busy message for importing bookmarks. +msgid "Bookmarks are being imported. Please wait a few minutes for results." +msgstr "Lastermarkak inportatzen ari dira. Itxaron minutu gutxi batzuk." + +#. TRANS: Form instructions for importing bookmarks. +msgid "You can upload a backed-up delicious.com bookmarks file." +msgstr "Delicious.com-eko babeskopia fitxategi bat igo dezakezu." + +#. TRANS: Button text on form to import bookmarks. +msgctxt "BUTTON" +msgid "Upload" +msgstr "Igo" + +#. TRANS: Button title on form to import bookmarks. +msgid "Upload the file." +msgstr "Fitxategia igo." + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Title" +msgstr "Titulua" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Notes" +msgstr "Oharrak" + +#. TRANS: Field label on form for adding a new bookmark. +msgctxt "LABEL" +msgid "Tags" +msgstr "Etiketak" + +#. TRANS: Field title on form for adding a new bookmark. +msgid "Comma- or space-separated list of tags." +msgstr "Koma edo espazioz banandutako etiketa zerrenda." + +#. TRANS: Button text for action to save a new bookmark. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gorde" + +#. TRANS: Title for action to create a new bookmark. +msgid "New bookmark" +msgstr "Lastermarka berria" + +#. TRANS: Client exception thrown when trying to create a new bookmark while not logged in. +msgid "Must be logged in to post a bookmark." +msgstr "Lastermarka bat bidaltzeko saioa hasi behar duzu." + +#. TRANS: Client exception thrown when trying to create a new bookmark without a title. +msgid "Bookmark must have a title." +msgstr "Lastermarkak titulu bat behar du." + +#. TRANS: Client exception thrown when trying to create a new bookmark without a URL. +msgid "Bookmark must have an URL." +msgstr "Lastermarkak URL bat behar du." + +#. TRANS: Page title after posting a bookmark. +msgid "Bookmark posted" +msgstr "Lastermarka bidali da" + +#. TRANS: %s is the filename that contains a backup for a user. +#, php-format +msgid "Getting backup from file \"%s\"." +msgstr "\"%s\" fitxategitik babeskopia lortzen." diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index ef2bb2bc59..8cd97f8b52 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -14,13 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -66,12 +67,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "Favoris" -#. 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 "Le signet %1$s (notice %2$d) ne possède pas de pièces jointes." - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index e7f9c586a8..5afa3a8647 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -62,12 +63,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "Marcapaginas" -#. 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 "Le marcapaginas %1$s (nota %2$d) non ha annexos." - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format diff --git a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po index 1aaa023a2a..a19b55fb77 100644 --- a/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ja/LC_MESSAGES/Bookmark.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -61,12 +62,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "ブックマーク" -#. 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 "ブックマーク %1$s (つぶやき %2$d) は添付ファイルがありません" - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index c1b7f23333..faec18161d 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -61,12 +62,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "Одбележување" -#. 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 "Одбележувачот %1$s (забелешка %2$d) нема прилози." - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index d499f02c1f..8eed6a5bde 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -62,12 +63,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "Bladwijzer" -#. 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 "De bladwijzer %1$s (%2$d) heeft geen bijlagen." - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format diff --git a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po index d0edcb9f6c..57a06e4e56 100644 --- a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:04+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -62,12 +63,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "" -#. 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 "" - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po index 8364786bd2..05ee989a34 100644 --- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -62,12 +63,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "Pananda" -#. 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 "Ang panandang %1$s (pabatid na %2$d) ay walang mga kalakip." - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index e7d54fb3ce..2cbbb7c45c 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" @@ -62,12 +63,6 @@ msgctxt "TITLE" msgid "Bookmark" msgstr "Закладка" -#. 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 "Закладка %1$s (допис %2$d) має не вкладень." - #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 8fa2840a04..c421bbb4cc 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ast/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po index c29c409356..f645105ade 100644 --- a/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ast/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po index 98b214a71c..3e069e2e00 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:05+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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a7a7d6e377..9faf38bb86 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po index 84e8c6b365..d60f034ff2 100644 --- a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\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 c0f7626a94..3881a020bc 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ff902e732b..61f488282b 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" diff --git a/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..70032c6815 --- /dev/null +++ b/plugins/CacheLog/locale/gl/LC_MESSAGES/CacheLog.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - CacheLog to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Log reads and writes to the cache." +msgstr "Rexistra as lecturas e escrituras na memoria caché." diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index 1ac1c0af78..daa34f4728 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:05+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3f397df337..43af68eac8 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a6b191b8f5..4f0929c334 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f637ab648e..bc89b78dc8 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 27c6c27ab9..07338e398d 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5fbb0d33bc..5f71d06a1a 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 766e504a4a..85517bee1a 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 29ebde1c5a..b63dfdd7ab 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 870b2a9673..1c1581e28c 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6c7e85f838..280aad989a 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:06+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c15f895bd6..c4a93c8594 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 4f63099e18..30644541f8 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:07+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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fa2060f1e2..5fbc9e2502 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..4fa5f8a51d --- /dev/null +++ b/plugins/CasAuthentication/locale/ca/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,69 @@ +# Translation of StatusNet - CasAuthentication to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Solde +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +msgid "CAS" +msgstr "CAS" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +msgid "Login or register with CAS." +msgstr "" + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" + +#. TRANS: Exception thrown when the CAS Authentication plugin has been configured incorrectly. +msgid "Specifying a server is required." +msgstr "Cal especificar un servidor." + +#. TRANS: Exception thrown when the CAS Authentication plugin has been configured incorrectly. +msgid "Specifying a port is required." +msgstr "Cal especificar un port." + +#. TRANS: Exception thrown when the CAS Authentication plugin has been configured incorrectly. +msgid "Specifying a path is required." +msgstr "Cal especificar un camí." + +#. TRANS: Plugin description. CAS is Central Authentication Service. +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" + +#. TRANS: Client error displayed when trying to log in while already logged on. +msgid "Already logged in." +msgstr "Ja heu iniciat una sessió." + +#. TRANS: Server error displayed when trying to log in with incorrect username or password. +msgid "Incorrect username or password." +msgstr "Nom d'usuari o contrasenya incorrectes." + +#. TRANS: Server error displayed when login fails in CAS authentication plugin. +msgid "Error setting user. You are probably not authorized." +msgstr "" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index b560572795..134019dadb 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d930762e50..2a6a322517 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po new file mode 100644 index 0000000000..ac0f0ea3f0 --- /dev/null +++ b/plugins/CasAuthentication/locale/eu/LC_MESSAGES/CasAuthentication.po @@ -0,0 +1,72 @@ +# Translation of StatusNet - CasAuthentication to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CasAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-casauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item. CAS is Central Authentication Service. +msgid "CAS" +msgstr "AZZ" + +#. TRANS: Tooltip for menu item. CAS is Central Authentication Service. +msgid "Login or register with CAS." +msgstr "AZZrekin izen eman." + +#. TRANS: Invitation to users with a CAS account to log in using the service. +#. TRANS: "[CAS login]" is a link description. (%%action.caslogin%%) is the URL. +#. TRANS: These two elements may not be separated. +#, php-format +msgid "(Have an account with CAS? Try our [CAS login](%%action.caslogin%%)!)" +msgstr "" +"(AZZrekin konturik bai? Saiatu gure [AZZ saio haserarekin](%%action.caslogin%" +"%)!" + +#. TRANS: Exception thrown when the CAS Authentication plugin has been configured incorrectly. +msgid "Specifying a server is required." +msgstr "Zerbitzari bat zehaztea beharrezkoa da." + +#. TRANS: Exception thrown when the CAS Authentication plugin has been configured incorrectly. +msgid "Specifying a port is required." +msgstr "Portu bat zehaztea beharrezkoa da." + +#. TRANS: Exception thrown when the CAS Authentication plugin has been configured incorrectly. +msgid "Specifying a path is required." +msgstr "Bide bat zehaztea beharrezkoa da." + +#. TRANS: Plugin description. CAS is Central Authentication Service. +msgid "" +"The CAS Authentication plugin allows for StatusNet to handle authentication " +"through CAS (Central Authentication Service)." +msgstr "" +"AZZ autentifikazio pluginak StatusNet-en AZZ (Autentifikazio Zerbitzu " +"Zentrala) bidez autentifikatzea ahalbidetzen du." + +#. TRANS: Client error displayed when trying to log in while already logged on. +msgid "Already logged in." +msgstr "Dagoeneko saioa hasita." + +#. TRANS: Server error displayed when trying to log in with incorrect username or password. +msgid "Incorrect username or password." +msgstr "Erabiltzaile edo pasahitz okerra." + +#. TRANS: Server error displayed when login fails in CAS authentication plugin. +msgid "Error setting user. You are probably not authorized." +msgstr "Akatsa erabiltzailea ezartzean. Ziurrenik ez zaude baimenduta." diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index 77ec673602..89b1739257 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po index 04164f4dc5..24c1350d9d 100644 --- a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:07+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\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 89f98eee75..04681614a6 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8a1b88fc37..dc991cb700 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3675b6d979..86544ee235 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8f380aded8..4ac8667cae 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 09c6fece84..da81eff7aa 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cec102dfb6..4f5be1af4c 100644 --- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index 841d9d663c..9819d6fd38 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 02ec197e50..98c2ceb4d1 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d5c84fa9cc..ec3bc5f210 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 670d17609d..a855b241cd 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:08+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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b6cc8fdb62..eacbf0460a 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2b565deac5..f12479c4b6 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..a4d3e6dc6f --- /dev/null +++ b/plugins/ClientSideShorten/locale/eu/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - ClientSideShorten to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:09+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten-ekin web interfazeko ohar imprimakiak URLa idazten duzun " +"einean laburtuko du automatikoki, oharra bidali aurretik." + +#. TRANS: Client exception thrown when a text argument is not present. +msgid "\"text\" argument must be specified." +msgstr "\"testua\" argumentua zehaztu behar da." diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index b4c4ddc1b1..cbb15345f5 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" diff --git a/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po new file mode 100644 index 0000000000..7c032518b1 --- /dev/null +++ b/plugins/ClientSideShorten/locale/gl/LC_MESSAGES/ClientSideShorten.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - ClientSideShorten to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ClientSideShorten\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"ClientSideShorten causes the web interface's notice form to automatically " +"shorten URLs as they entered, and before the notice is submitted." +msgstr "" +"ClientSideShorten causa que o formulario de notas da interface acurte os " +"enderezos URL automaticamente á vez que se escriben e antes de enviar a nota." + +#. TRANS: Client exception thrown when a text argument is not present. +msgid "\"text\" argument must be specified." +msgstr "Cómpre especificar o argumento \"text\"." diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index d21215ec51..1d59c8ab31 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f2003992ba..5275a793c7 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 606bc0e0b5..f6c6b1463b 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a4326ccbd6..cec0355366 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4eea3085b5..24bd254eb2 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 60815b7516..ef1369b121 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7823f5495b..e5eceed15b 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po @@ -1,6 +1,7 @@ # Translation of StatusNet - ClientSideShorten to Russian (Русский) # Exported from translatewiki.net # +# Author: Adata80 # Author: Lockal # Author: Александр Сигачёв # -- @@ -10,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" @@ -32,6 +34,5 @@ msgstr "" "вводе в форму веб-интерфейса перед отправкой записи." #. TRANS: Client exception thrown when a text argument is not present. -#, fuzzy msgid "\"text\" argument must be specified." -msgstr "Должен быть указан параметр «text»." +msgstr "\"text\" параметр должен быть указан." diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index 07bae3ce15..761dc43d46 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 903fcf33b6..366e5e1199 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 48b0a5e506..7bfa06e2d5 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:10+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 44a71ae67f..430eca3492 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/de/LC_MESSAGES/Comet.po b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po index 3a292c3f22..113dd3354f 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index 45d9e1e1d8..82d7798cf9 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..177109cbf8 --- /dev/null +++ b/plugins/Comet/locale/gl/LC_MESSAGES/Comet.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - Comet to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description message. Bayeux is a protocol for transporting asynchronous messages +#. TRANS: and Comet is a web application model. +msgid "Plugin to make updates using Comet and Bayeux." +msgstr "Complemento para realizar actualizacións mediante Comet e Bayeux." diff --git a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po index ac69952cab..eed431f8be 100644 --- a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index 7a0e4e0801..eea4282344 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f09e67b541..b70a93bd35 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index 58fd957fd9..4d5bb17586 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-comet\n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index b57daa04f6..a1ba682bba 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 82b02b8687..c71920c6eb 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 33ff3e1dd5..f621d4cfe7 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 68e68c5853..ab7c90f3b0 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 078cfff984..7a8b47211d 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ast/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po index 71e4f1678a..555f010698 100644 --- a/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ast/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po index 9eff78659b..9f8df76af8 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:11+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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 223c061b4b..525b4f7976 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2e865cd561..5fe4a4caa7 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e85ccae5fa..609b9e61b0 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4e4a1a4de6..64a928735a 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7d167bb9cb..1c0d739611 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" diff --git a/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po new file mode 100644 index 0000000000..07cd757115 --- /dev/null +++ b/plugins/DirectionDetector/locale/gl/LC_MESSAGES/DirectionDetector.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DirectionDetector to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DirectionDetector\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:11+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-directiondetector\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Shows notices with right-to-left content in correct direction." +msgstr "Mostra notas con contidos de dereita á esquerda na dirección correcta." diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index e9398b117b..81f217f4d3 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d88d59227f..7bf197edf9 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 987fa828bb..31efcc9be1 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d4d134c2e4..3d7b9271af 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5d42fdcbe2..0bd8ba6b8b 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4edcfd19d8..589a67d348 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a558c2b4bc..ec94264d1e 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:12+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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4c66e1860c..c57698f071 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-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:12+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -18,7 +18,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2011-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cb004ea595..c76c8690a5 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3111889580..ddb5085f71 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c8c5beebae..c48800ecac 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7b2abb6da8..92e6e8ea06 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2f9b1c7cb2..e0a5b7da54 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 618753c6ad..96f8b5f9fb 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po index 0f302e68ae..97d6d85b3e 100644 --- a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:14+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po index 3f2285827a..11ca39c7fe 100644 --- a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:14+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -84,6 +85,10 @@ msgid "" "* Try more general keywords.\n" "* Try fewer keywords." msgstr "" +"* Assegureu-vos que tots les paraules estan escrites correctament.\n" +"* Proveu diferents paraules clau.\n" +"* Proveu paraules clau més generals.\n" +"* Proveu menys paraules claus." #. TRANS: Title for group directory page. %d is a page number. #, php-format @@ -107,7 +112,6 @@ msgid "Group directory - %1$s, page %2$d" msgstr "Directori de grup — %1$s, pàgina %2$d" #. TRANS: Page instructions. -#, fuzzy msgid "" "After you join a group you can send messages to all other members\n" "using the syntax \"!groupname\".\n" @@ -115,8 +119,11 @@ msgid "" "Browse groups, or search for groups by their name, location or topic.\n" "Separate the terms by spaces; they must be three characters or more." msgstr "" -"Cerca gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " -"amb espais: han de ser de 3 o més caràcters." +"Després d'unir-vos a un grup podeu enviar missatges als altres membres\n" +"fent servir la sintaxi \"!nomdelgrup\".\n" +"\n" +"Navegueu pels grups, o cerqueu grups pel nom, ubicació o temàtica.\n" +"Separeu els termes per espai; han de contenir 3 o més caràcters." #. TRANS: Link to create a new group on the group list page. msgid "Create a new group" diff --git a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po index 4051080ca0..660acce19d 100644 --- a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po @@ -4,6 +4,7 @@ # Author: Giftpflanze # Author: Inkowik # Author: Marcel083 +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directory\n" @@ -39,7 +41,7 @@ msgstr "Benutzerverzeichnis – %s" #. TRANS: Page title for user directory. #. TRANS: %1$s is the applied filter, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "User directory - %1$s, page %2$d" msgstr "Benutzerverzeichnis – %1$s, Seite %2$d" diff --git a/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po b/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po new file mode 100644 index 0000000000..9984042ed5 --- /dev/null +++ b/plugins/Directory/locale/eu/LC_MESSAGES/Directory.po @@ -0,0 +1,173 @@ +# Translation of StatusNet - Directory to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Directory\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:14+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-directory\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Page title for user directory. %d is a page number. +#, php-format +msgid "User Directory, page %d" +msgstr "Erabiltzaile Direktorioa, %d. orria" + +#. TRANS: Page title for user directory. +msgid "User directory" +msgstr "Erabiltzaile direktorioa" + +#. TRANS: Page title for user directory. %s is the applied filter. +#, php-format +msgid "User directory - %s" +msgstr "Erabiltzaile direktorioa - %s" + +#. TRANS: Page title for user directory. +#. TRANS: %1$s is the applied filter, %2$d is a page number. +#, php-format +msgid "User directory - %1$s, page %2$d" +msgstr "Erabiltzaile direktorioa - %1$s, %2$d. orria" + +#. TRANS: %%site.name%% is the name of the StatusNet site. +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Bilatu jendea %%site.name%%n bere izenez, kokapenaz edo interesez. Banandu " +"espazioekin terminoak, 3 karaktere edo gehiago izan behar dituzte." + +#. TRANS: Fieldset legend. +msgid "Search site" +msgstr "Leku bilaketa" + +#. TRANS: Field label for user directory filter. +#. TRANS: Field label for input of one or more keywords. +msgid "Keyword(s)" +msgstr "Gakoa(k)" + +#. TRANS: Button text. +#. TRANS: Button text for searching group directory. +msgctxt "BUTTON" +msgid "Search" +msgstr "Bilatu" + +#. TRANS: Empty list message for user directory. +#, php-format +msgid "No users starting with %s" +msgstr "Ez dago %s(r)ekin hasten den erabiltzailerik" + +#. TRANS: Empty list message for user directory. +#. TRANS: Empty list message for searching group directory. +msgid "No results." +msgstr "Emaitzarik ez." + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#. TRANS: Help text for searching group directory. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords." +msgstr "" +"* Ziurtatu hitz guztiak ondo idatziak daudela.\n" +"* Saiatu gako ezberdinekin.\n" +"* Saiatu gako orokorragoekin.\n" +"* Saiatu gako gutxiagorekin." + +#. TRANS: Title for group directory page. %d is a page number. +#, php-format +msgid "Group Directory, page %d" +msgstr "Talde Direktorioa, %d. orria" + +#. TRANS: Title for group directory page. +msgid "Group directory" +msgstr "Talde direktorioa" + +#. TRANS: Title for group directory page when it is filtered. +#. TRANS: %s is the filter string. +#, php-format +msgid "Group directory - %s" +msgstr "Talde direktorioa - %s" + +#. TRANS: Title for group directory page when it is filtered. +#. TRANS: %1$s is the filter string, %2$d is a page number. +#, php-format +msgid "Group directory - %1$s, page %2$d" +msgstr "Talde direktorioa - %1$s, %2$d. orria" + +#. TRANS: Page instructions. +msgid "" +"After you join a group you can send messages to all other members\n" +"using the syntax \"!groupname\".\n" +"\n" +"Browse groups, or search for groups by their name, location or topic.\n" +"Separate the terms by spaces; they must be three characters or more." +msgstr "" +"Behin talde batera batzen zarenean, bertako taldekide guztiei mezue bidal " +"diezaiekezu \"!taldeizena\" sintaxia erabiliz.\n" +"\n" +"Arakatu taldeak, edo bilatu bere izen, kokapen edo gaiaren bidez.\n" +"Banandu espazioekin terminoak, terminoek 3 karaktere edo gehiago izan behar " +"dituzte." + +#. TRANS: Link to create a new group on the group list page. +msgid "Create a new group" +msgstr "Sortu talde berri bat" + +#. TRANS: Fieldset legend. +msgid "Search groups" +msgstr "Taldeak bilatu" + +#. TRANS: Empty list message for searching group directory. +#. TRANS: %s is the search string. +#, php-format +msgid "No groups starting with %s." +msgstr "Ez dago %s(r)ekin hasten den talderik." + +#. TRANS: Menu item text for user directory. +msgctxt "MENU" +msgid "Directory" +msgstr "Direktorioa" + +#. TRANS: Menu item title for user directory. +msgid "User Directory." +msgstr "Erabiltzaile Direktorioa." + +#. TRANS: Plugin description. +msgid "Add a user directory." +msgstr "Gehitu erabiltzaile direktorio bat." + +#. TRANS: Column header in table for user nickname. +msgid "Nickname" +msgstr "Goitizena" + +#. TRANS: Column header in table for timestamp when user was created. +msgid "Created" +msgstr "Sortua" + +#. TRANS: Column header for number of subscriptions. +msgid "Subscriptions" +msgstr "Harpidetzak" + +#. TRANS: Column header for number of notices. +msgid "Notices" +msgstr "Oharrak" + +#. TRANS: Column header in table for members of a group. +msgid "Members" +msgstr "Kideak" diff --git a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po index 359bba9bad..4323566546 100644 --- a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po index 1dc85dc61d..40dafc8d89 100644 --- a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po new file mode 100644 index 0000000000..9894f5bbf1 --- /dev/null +++ b/plugins/Directory/locale/gl/LC_MESSAGES/Directory.po @@ -0,0 +1,161 @@ +# Translation of StatusNet - Directory to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Directory\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-directory\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Page title for user directory. %d is a page number. +#, php-format +msgid "User Directory, page %d" +msgstr "" + +#. TRANS: Page title for user directory. +msgid "User directory" +msgstr "" + +#. TRANS: Page title for user directory. %s is the applied filter. +#, php-format +msgid "User directory - %s" +msgstr "" + +#. TRANS: Page title for user directory. +#. TRANS: %1$s is the applied filter, %2$d is a page number. +#, php-format +msgid "User directory - %1$s, page %2$d" +msgstr "" + +#. TRANS: %%site.name%% is the name of the StatusNet site. +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#. TRANS: Fieldset legend. +msgid "Search site" +msgstr "" + +#. TRANS: Field label for user directory filter. +#. TRANS: Field label for input of one or more keywords. +msgid "Keyword(s)" +msgstr "Termos de busca" + +#. TRANS: Button text. +#. TRANS: Button text for searching group directory. +msgctxt "BUTTON" +msgid "Search" +msgstr "Procurar" + +#. TRANS: Empty list message for user directory. +#, php-format +msgid "No users starting with %s" +msgstr "" + +#. TRANS: Empty list message for user directory. +#. TRANS: Empty list message for searching group directory. +msgid "No results." +msgstr "Non houbo resultados." + +#. TRANS: Standard search suggestions shown when a search does not give any results. +#. TRANS: Help text for searching group directory. +msgid "" +"* Make sure all words are spelled correctly.\n" +"* Try different keywords.\n" +"* Try more general keywords.\n" +"* Try fewer keywords." +msgstr "" + +#. TRANS: Title for group directory page. %d is a page number. +#, php-format +msgid "Group Directory, page %d" +msgstr "" + +#. TRANS: Title for group directory page. +msgid "Group directory" +msgstr "" + +#. TRANS: Title for group directory page when it is filtered. +#. TRANS: %s is the filter string. +#, php-format +msgid "Group directory - %s" +msgstr "" + +#. TRANS: Title for group directory page when it is filtered. +#. TRANS: %1$s is the filter string, %2$d is a page number. +#, php-format +msgid "Group directory - %1$s, page %2$d" +msgstr "" + +#. TRANS: Page instructions. +msgid "" +"After you join a group you can send messages to all other members\n" +"using the syntax \"!groupname\".\n" +"\n" +"Browse groups, or search for groups by their name, location or topic.\n" +"Separate the terms by spaces; they must be three characters or more." +msgstr "" + +#. TRANS: Link to create a new group on the group list page. +msgid "Create a new group" +msgstr "" + +#. TRANS: Fieldset legend. +msgid "Search groups" +msgstr "" + +#. TRANS: Empty list message for searching group directory. +#. TRANS: %s is the search string. +#, php-format +msgid "No groups starting with %s." +msgstr "" + +#. TRANS: Menu item text for user directory. +msgctxt "MENU" +msgid "Directory" +msgstr "Directorio" + +#. TRANS: Menu item title for user directory. +msgid "User Directory." +msgstr "Directorio de usuario." + +#. TRANS: Plugin description. +msgid "Add a user directory." +msgstr "" + +#. TRANS: Column header in table for user nickname. +msgid "Nickname" +msgstr "Alcume" + +#. TRANS: Column header in table for timestamp when user was created. +msgid "Created" +msgstr "Creado" + +#. TRANS: Column header for number of subscriptions. +msgid "Subscriptions" +msgstr "Subscricións" + +#. TRANS: Column header for number of notices. +msgid "Notices" +msgstr "Notas" + +#. TRANS: Column header in table for members of a group. +msgid "Members" +msgstr "Membros" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index d75658a83b..ce6847b56c 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po index a25306492c..430b87bd4b 100644 --- a/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ja/LC_MESSAGES/Directory.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\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 b9d043ad2b..1f02ede39f 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index 66e05da44c..ec899b1ec6 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po index 359149e836..81ce2bbe12 100644 --- a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:15+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index ee008dabbf..a1eef29c83 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index fe28719f21..31ebadb13e 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-08-30 09:57:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0d5c0dbb99..229d1758d0 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 6ec73ee8bd..7004e5c4c4 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:16+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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c064329669..bedb33d1e5 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 debd437eb3..aceeb72f42 100644 --- a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 715f73c6e6..f3a82c5045 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8aa8807dfa..c741f04add 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a375b8d424..d065975036 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:16+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d268a41234..797661a71a 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po new file mode 100644 index 0000000000..66b4196b54 --- /dev/null +++ b/plugins/DiskCache/locale/gl/LC_MESSAGES/DiskCache.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - DiskCache to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DiskCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-diskcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Plugin to implement cache interface with disk files." +msgstr "" +"Complemento para executar a interface de memoria caché con ficheiros do " +"disco." diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index 42c02fb6f9..5c7cfbc7d3 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cef89a357a..a21a6b053c 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f4209c6541..afd59aa9e2 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0d13cda1f3..e7452afd41 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 28e7f05b65..dc5b5f492f 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bbfcf43cad..4ad89df814 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 757d8ba417..6bab5cc25d 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5419499598..ab9ee8b348 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5764c0ed72..003344d3a3 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" diff --git a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po index ae3b3a4ee5..5146671f71 100644 --- a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:17+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 2f464bc50a..ffbba59a28 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fee55cf138..4b45b23570 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 48f2325d9e..96c4b450e5 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a49a8ed345..2ace1369ed 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 902492065c..8fd1c36326 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 828551937e..11845456a5 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po new file mode 100644 index 0000000000..3bb150b7b7 --- /dev/null +++ b/plugins/Disqus/locale/ca/LC_MESSAGES/Disqus.po @@ -0,0 +1,45 @@ +# Translation of StatusNet - Disqus to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Disqus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:18+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:59+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-disqus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: User notification that JavaScript is required for Disqus comment display. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "" +"Please enable JavaScript to view the [comments powered by Disqus](http://" +"disqus.com/?ref_noscript=%s)." +msgstr "" + +#. TRANS: This message is followed by a Disqus logo. Alt text is "Disqus". +msgid "Comments powered by " +msgstr "Comentaris gràcies a " + +#. TRANS: Plugin supplied feature for Disqus comments to notices. +msgid "Comments" +msgstr "Comentaris" + +#. TRANS: Plugin description. +msgid "" +"Use Disqus to add commenting to notice " +"pages." +msgstr "" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index b5d01d2d78..ead7e7d9ba 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 75594cca6c..c018bb7396 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1e4205d343..a710bdc03f 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 90ca4f5966..31899d7390 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e5855b9069..d911c37940 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0a26ec8174..3c42a0b889 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e25d796089..e998a6ea45 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 51c65a1026..a693ad7ddf 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3e0c78b0b7..22a1a929de 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a94ec06ba2..d8ae6c7c59 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b028166d56..0a18c80f91 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a24703728d..6f068fb92b 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" diff --git a/plugins/DomainStatusNetwork/lib/freeemail.php b/plugins/DomainStatusNetwork/lib/freeemail.php index fe3cc5a4fb..3f8f4452e9 100644 --- a/plugins/DomainStatusNetwork/lib/freeemail.php +++ b/plugins/DomainStatusNetwork/lib/freeemail.php @@ -5,6 +5,8 @@ class FreeEmail { static $domains = array('111mail.com', '123iran.com', + '126.com', + '163.com', '1-usa.com', '2die4.com', '37.com', @@ -16,12 +18,14 @@ class FreeEmail { '8.am', 'a.org.ua', 'abha.cc', + 'abv.bg', 'accountant.com', 'actingbiz.com', 'adexec.com', 'africamail.com', 'agadir.cc', 'ahsa.ws', + 'aim.com', 'ajman.cc', 'ajman.us', 'ajman.ws', @@ -37,6 +41,7 @@ class FreeEmail { 'anatomicrock.com', 'animeone.com', 'anjungcafe.com', + 'any-mail.co.uk', 'aqaba.cc', 'arar.ws', 'archaeologist.com', @@ -46,12 +51,14 @@ class FreeEmail { 'asiancutes.com', 'aswan.cc', 'a-teens.net', + 'att.net', // not free but consumer 'ausi.com', 'australiamail.com', 'autoindia.com', 'autopm.com', 'baalbeck.cc', 'bahraini.cc', + 'baidu.com', 'banha.cc', 'barriolife.com', 'b-boy.com', @@ -66,22 +73,27 @@ class FreeEmail { 'bikerider.com', 'bikermail.com', 'billssite.com', + 'binkmail.com', 'bizerte.cc', 'bk.ru', 'blackandchristian.com', 'blackcity.net', 'blackvault.com', 'blida.info', + 'blumail.org', 'bmx.lv', 'bmxtrix.com', 'boarderzone.com', 'boatnerd.com', + 'bol.com.br', 'bolbox.com', 'bongmail.com', 'bowl.com', + 'btamail.net.cn', 'buraydah.cc', 'butch-femme.org', 'byke.com', + 'cablevision.com', 'calle22.com', 'cameroon.cc', 'cannabismail.com', @@ -98,6 +110,7 @@ class FreeEmail { 'clerk.com', 'cliffhanger.com', 'columnist.com', + 'comcast.net', 'comic.com', 'company.org.ua', 'congiu.net', @@ -134,6 +147,8 @@ class FreeEmail { 'egypt.net', 'e-mail.am', 'email.com', + 'email.cz', + 'email.it', 'e-mail.ru', 'emailfast.com', 'emails.ru', @@ -146,6 +161,7 @@ class FreeEmail { 'europe.com', 'execs.com', 'ezsweeps.com', + 'facebook.com', 'falasteen.cc', 'famous.as', 'farts.com', @@ -153,6 +169,8 @@ class FreeEmail { 'financier.com', 'firemyst.com', 'fit.lv', + 'foxmail.com', + 'free.fr', 'freeonline.com', 'fromru.com', 'front.ru', @@ -172,6 +190,9 @@ class FreeEmail { 'giza.cc', 'glittergrrrls.com', 'gmail.com', + 'gmx.com', + 'gmx.de', + 'gmx.net', 'goatrance.com', 'goddess.com', 'gohip.com', @@ -196,18 +217,48 @@ class FreeEmail { 'hebron.tv', 'hip hopmail.com', 'homs.cc', + 'home.nl', 'hotbox.ru', + 'hotmail.ca', 'hotmail.com', + 'hotmail.com.ar', + 'hotmail.com.br', + 'hotmail.com.tr', + 'hotmail.co.id', + 'hotmail.co.in', + 'hotmail.co.jp', + 'hotmail.co.th', + 'hotmail.co.uk', + 'hotmail.co.za', + 'hotmail.cz', + 'hotmail.de', + 'hotmail.dk', + 'hotmail.es', + 'hotmail.fr', + 'hotmail.gr', + 'hotmail.it', + 'hotmail.my', + 'hotmail.nl', + 'hotmail.no', + 'hotmail.net', 'hotmail.ru', + 'hotmail.se', + 'hotmail.sg', 'hot-shot.com', 'houseofhorrors.com', 'hugkiss.com', 'hullnumber.com', 'human.lv', + 'hush.com', 'ibra.cc', 'idunno4recipes.com', + 'ig.com', + 'ig.com.br', 'ihatenetscape.com', + 'in.com', 'iname.com', + 'inbox.com', + 'inbox.lv', 'inbox.ru', 'inorbit.com', 'insurer.com', @@ -234,23 +285,52 @@ class FreeEmail { 'kickboxing.com', 'kidrock.com', 'kinkyemail.com', + 'klzlk.com', 'kool-things.com', 'krovatka.net', 'kuwaiti.tv', + 'kwick.de', 'kyrgyzstan.cc', 'land.ru', + 'laposte.net', 'latakia.cc', 'latchess.com', 'latinabarbie.com', + 'latinmail.com', 'latinogreeks.com', + 'lavabit.com', 'lawyer.com', 'lebanese.cc', 'leesville.com', 'legislator.com', 'list.ru', + 'live.at', + 'live.be', + 'live.cl', + 'live.cn', 'live.com', + 'live.com.ar', + 'live.com.ph', + 'live.com.sg', + 'live.co.uk', + 'live.com.mx', + 'live.ca', + 'live.cn', + 'live.com.sg', + 'live.de', + 'live.dk', + 'live.fr', + 'live.hk', + 'live.in', + 'live.it', + 'live.jp', + 'live.nl', + 'live.no', + 'live.ru', + 'live.se', 'lobbyist.com', 'london.com', + 'lonestar.org', 'loveable.com', 'loveemail.com', 'loveis.lv', @@ -260,21 +340,25 @@ class FreeEmail { 'lubnan.ws', 'lucky7lotto.net', 'lv-inter.net', + 'mac.com', 'mad.scientist.com', 'madeniggaz.net', 'madinah.cc', 'madrid.com', 'maghreb.cc', + 'mail.be', 'mail.com', 'mail.ru', 'mail15.com', 'mail333.com', 'mailbomb.com', + 'mailinator.com', 'manama.cc', 'mansoura.tv', 'marillion.net', 'marrakesh.cc', 'mascara.ws', + 'me.com', 'megarave.com', 'meknes.cc', 'mesra.net', @@ -290,6 +374,7 @@ class FreeEmail { 'musician.net', 'musician.org', 'musicsites.com', + 'myopera.com', 'myself.com', 'nabeul.cc', 'nabeul.info', @@ -297,6 +382,8 @@ class FreeEmail { 'nador.cc', 'najaf.cc', 'narod.ru', + 'naver.com', + 'nepwk.com', 'netbroadcaster.com', 'netfingers.com', 'net-surf.com', @@ -307,6 +394,8 @@ class FreeEmail { 'nm.ru', 'nocharge.com', 'nycmail.com', + 'o2.co.uk', + 'o2.pl', 'omani.ws', 'omdurman.cc', 'operationivy.com', @@ -316,6 +405,7 @@ class FreeEmail { 'oued.org', 'oujda.biz', 'oujda.cc', + 'ovi.com', 'paidoffers.net', 'pakistani.ws', 'palmyra.cc', @@ -352,6 +442,7 @@ class FreeEmail { 'puertoricowow.com', 'puppetweb.com', 'qassem.cc', + 'qq.com', 'quds.cc', 'rabat.cc', 'rafah.cc', @@ -372,25 +463,33 @@ class FreeEmail { 'representative.com', 'rescueteam.com', 'rockeros.com', + 'rocketmail.com', 'romance106fm.com', 'rome.com', + 'rr.com', 'sa veourplanet.org', 'safat.biz', 'safat.info', 'safat.us', 'safat.ws', + 'safe-mail.com', + 'safetypost.de', 'saintly.com', 'salalah.cc', 'salmiya.biz', 'samerica.com', 'sanaa.cc', 'sanfranmail.com', + 'sbcglobal.com', + 'sbcglobal.net', 'scientist.com', 'seductive.com', 'seeb.cc', 'sexriga.lv', + 'sdf.lonestar.org', 'sfax.ws', 'sharm.cc', + 'sina.com', 'sinai.cc', 'singalongcenter.com', 'singapore.com', @@ -418,6 +517,7 @@ class FreeEmail { 'supermail.ru', 'surfguiden.com', 'sweetwishes.com', + 't-online.de', 'tabouk.cc', 'tajikistan.cc', 'tangiers.cc', @@ -434,6 +534,7 @@ class FreeEmail { 'timor.cc', 'tokyo.com', 'tombstone.ws', + 'trash-mail.com', 'troamail.org', 'tunisian.cc', 'tunisian.cc', @@ -442,6 +543,7 @@ class FreeEmail { 'u2tours.com', 'ua.fm', 'uaix.info', + 'ukr.net', 'umpire.com', 'urdun.cc', 'usa.com', @@ -449,17 +551,46 @@ class FreeEmail { 'vitalogy.org', 'whatisthis.com', 'whoever.com', + 'windowslive.com', 'winning.com', 'witty.com', 'wrestlezone.com', 'writeme.com', 'yahoo.ca', + 'yahoo.cl', + 'yahoo.co.id', + 'yahoo.co.in', + 'yahoo.co.jp', + 'yahoo.co.nz', + 'yahoo.co.uk', 'yahoo.com', + 'yahoo.com.ar', + 'yahoo.com.au', + 'yahoo.com.cn', + 'yahoo.com.hk', + 'yahoo.com.my', + 'yahoo.com.mx', + 'yahoo.com.ph', + 'yahoo.com.sg', + 'yahoo.com.tr', + 'yahoo.com.ve', + 'yahoo.com.vn', + 'yahoo.de', + 'yahoo.dk', + 'yahoo.es', + 'yahoo.fr', + 'yahoo.gr', + 'yahoo.in', + 'yahoo.it', + 'yahoo.pl', + 'yahoo.ro', + 'yahoo.se', 'yanbo.cc', 'yandex.ru', 'yepmail.com', 'yemeni.cc', 'yogaelements.com', + 'yopmail.fr', 'yours.com', 'yunus.cc', 'zabor.lv', diff --git a/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot index e8dcea6d4b..ee2c2789b1 100644 --- a/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot +++ b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po index cb82822720..9e108d2a99 100644 --- a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:19+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po index 35c014febc..269ce44ecd 100644 --- a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po new file mode 100644 index 0000000000..013b16867c --- /dev/null +++ b/plugins/DomainStatusNetwork/locale/gl/LC_MESSAGES/DomainStatusNetwork.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - DomainStatusNetwork to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DomainStatusNetwork\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "A plugin that maps a single status_network to an email domain." +msgstr "" +"Un complemento que fai corresponder un status_network único cun dominio de " +"correo electrónico." diff --git a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po index da25d085f0..5223df7d4a 100644 --- a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:20+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po index 0cdc25dd17..ee0a5f5d82 100644 --- a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po index 8999bb0228..b53dca6435 100644 --- a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po index de7055b04a..43b987423c 100644 --- a/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po index 3ddbc8ea5f..4b0fe11fad 100644 --- a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po index 4a9c310a42..8d13b54c9a 100644 --- a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po index 62c2601e7f..9c270fbf5f 100644 --- a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" diff --git a/plugins/DomainWhitelist/locale/DomainWhitelist.pot b/plugins/DomainWhitelist/locale/DomainWhitelist.pot index 300d7f0b8e..0b99bd4b84 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po index 0262cb14f9..83ba6cf75c 100644 --- a/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:21+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po new file mode 100644 index 0000000000..747b3bb11e --- /dev/null +++ b/plugins/DomainWhitelist/locale/ca/LC_MESSAGES/DomainWhitelist.po @@ -0,0 +1,82 @@ +# Translation of StatusNet - DomainWhitelist to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Solde +# Author: Toniher +# -- +# 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-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:21+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:19:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown when a given e-mailaddress is not in the domain whitelist. +#. TRANS: %s is a whitelisted e-mail domain. +#, php-format +msgid "Email address must be in this domain: %s." +msgstr "L'adreça electrònica ha de ser en aquest domini: %s." + +#. TRANS: Client exception thrown when a given e-mailaddress is not in the domain whitelist. +#. TRANS: %s are whitelisted e-mail domains separated by comma's (localisable). +#, php-format +msgid "Email address must be in one of these domains: %s." +msgstr "L'adreça electrònica ha de ser en un d'aquests dominis: %s." + +#. TRANS: Separator for whitelisted domains. +msgctxt "SEPARATOR" +msgid ", " +msgstr ", " + +#. TRANS: Exception thrown when an e-mail address does not match the site's domain whitelist. +msgid "That email address is not allowed on this site." +msgstr "" + +#. TRANS: Title for invitiation deletion dialog. +msgid "Confirmation Required" +msgstr "Cal confirmació" + +#. TRANS: Confirmation text for invitation deletion dialog. +msgid "Really delete this invitation?" +msgstr "Voleu eliminar aquesta invitació?" + +#. TRANS: Plugin description. +msgid "Restrict domains for email users." +msgstr "" + +#. TRANS: Form legend. +msgid "Invite collegues" +msgstr "Convida els col·legues" + +#. TRANS: Field label for a personal message to send to invitees. +msgid "Personal message" +msgstr "Missatge personal" + +#. TRANS: Field title for a personal message to send to invitees. +msgid "Optionally add a personal message to the invitation." +msgstr "Opcionalment, afegiu un missatge personal a la invitació." + +#. TRANS: Link description to action to add another item to a list. +msgid "Add another item" +msgstr "Afegeix un altre element" + +#. TRANS: Send button for inviting friends. +msgctxt "BUTTON" +msgid "Send" +msgstr "Envia" + +#. TRANS: Submit button title. +msgid "Send invitations." +msgstr "Envia invitacions." diff --git a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po index 9d1b14b838..4a9c1e2924 100644 --- a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po index 3af2d74546..0f1fa4b687 100644 --- a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po index 0714d4f4cb..6e9fee6596 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 51cc7387c9..f44c1d81da 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po index e3da8be134..84a24303f9 100644 --- a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po index 3cfaac7295..5cd58f2ca4 100644 --- a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index 8695aca368..34ccfc482d 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 af6ac0426b..58e6f97d26 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:22+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b3748eb3d2..b8a652e62b 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f213d54fd1..bceed74555 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2ad7aa5bac..b88908e4dc 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b8ca3139b0..c7d2a22167 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 811d9af6c2..d75213753b 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fc6124f509..4993349c18 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" diff --git a/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po new file mode 100644 index 0000000000..f32e51aa3d --- /dev/null +++ b/plugins/Echo/locale/gl/LC_MESSAGES/Echo.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Echo to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Echo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-echo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Use Echo to add commenting to notice " +"pages." +msgstr "" +"Usa Echo para engadir comentarios ás " +"páxinas das notas." diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 32dff4bce3..652ffeede9 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:23+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f5143ab61d..eb2492de6b 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 596a4015fb..5402678ea6 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fc678b2331..4044e16ef9 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 565fa32f1c..0386f74f64 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4069ae5640..e757f7b67b 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6b0143245c..3e05fe2bc6 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2233337a39..8c1edeb3c6 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c44768b9e6..53b7119e36 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:24+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2c0d6e9887..948dbcd669 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7427e1ac52..634548d073 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 59865d4d04..bf3a40cff8 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2f0c848513..8cdce5b0d3 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cc0b46e5ad..e051ded219 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 54a726b1dd..63f28b3591 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 90068fcd36..a1e852489c 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 004051815c..0db8e9e1cc 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4626a63f9c..89309d745e 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 32fde21186..b818fa1528 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..aa0b0d6ce5 --- /dev/null +++ b/plugins/EmailAuthentication/locale/eu/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - EmailAuthentication to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"Email Authentication pluginak erabiltzaileei heuren email helbidearekin " +"saioa hasten uzten die." diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index c33f8fc8b7..8ff7a45452 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 00ae796a61..90fe1604bb 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po new file mode 100644 index 0000000000..f74bde0ebe --- /dev/null +++ b/plugins/EmailAuthentication/locale/gl/LC_MESSAGES/EmailAuthentication.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - EmailAuthentication to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-emailauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"The Email Authentication plugin allows users to login using their email " +"address." +msgstr "" +"O complemento de autenticación por correo electrónico permite aos usuarios " +"rexistrarse mediante o seu enderezo de correo electrónico." diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index 9a5714a76a..15597521ba 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 427d0ff237..ce26c31f74 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 dfdc6a74b1..47007851fb 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:25+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e2f48181b5..6300fe21b9 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6988423af0..301468321b 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ae98b82fc9..95788c603a 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3dc3d0dfe0..f14f3c914f 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d2babd5f78..19f6cbec4e 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d148c63b25..39ce59a58a 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:26+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1309549f4a..e1a7499cb0 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4fd8191019..9a231fab29 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 51be15db0a..aea485ebb3 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d2c6c3cfc4..f40b3ddf3e 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" diff --git a/plugins/EmailRegistration/locale/EmailRegistration.pot b/plugins/EmailRegistration/locale/EmailRegistration.pot index defa38e628..4af30e9dfc 100644 --- a/plugins/EmailRegistration/locale/EmailRegistration.pot +++ b/plugins/EmailRegistration/locale/EmailRegistration.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po index 4d35b2ede0..80eca3bbaa 100644 --- a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:28+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -42,7 +43,7 @@ msgstr "" #. TRANS: Client exception thrown when given confirmation code was not issued. msgid "No such confirmation code." -msgstr "لا رمز تأكيد كهذا." +msgstr "رمز التأكيد هذا غير موجود." #. TRANS: Title for registration page. msgctxt "TITLE" diff --git a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po index 54ae71a345..8bb03083f0 100644 --- a/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/br/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po index 9bbebda205..befb2d7743 100644 --- a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:29+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -25,11 +26,11 @@ msgstr "" #. TRANS: Client exception trown when registration by e-mail is not allowed. msgid "Registration not allowed." -msgstr "" +msgstr "No es permet el registre." #. TRANS: Client exception trown when trying to register without an invitation. msgid "Sorry, only invited people can register." -msgstr "" +msgstr "Només es poden registrar les persones convidades." #. TRANS: Client exception thrown when no confirmation code was provided. msgid "No confirmation code." @@ -37,7 +38,7 @@ msgstr "No hi ha cap codi de confirmació." #. TRANS: Client exception trown when using an invitation multiple times. msgid "Invitation already used." -msgstr "" +msgstr "Ja s'ha utilitzat la invitació." #. TRANS: Client exception thrown when given confirmation code was not issued. msgid "No such confirmation code." @@ -62,9 +63,8 @@ msgid "" msgstr "" #. TRANS: Client exception trown when trying to set password with an invalid confirmation code. -#, fuzzy msgid "No confirmation thing." -msgstr "No hi ha cap codi de confirmació." +msgstr "No hi ha res de confirmació." #. TRANS: Error text when trying to register without agreeing to the terms. msgid "You must accept the terms of service and privacy policy to register." @@ -78,7 +78,7 @@ msgstr "Cal que defineixis una contrassenya" #. TRANS: Error text when trying to register with too short a password. msgid "Password must be 6 or more characters." -msgstr "" +msgstr "La contrasenya ha de tenir 6 o més caràcters." #. TRANS: Error text when trying to register without providing the same password twice. msgid "Passwords do not match." @@ -86,13 +86,13 @@ msgstr "Les contrasenyes no coincideixen." #. TRANS: Exception trown when using an invitation multiple times. msgid "Failed to register user." -msgstr "" +msgstr "No s'ha pogut registrar l'usuari." #. TRANS: Subject for confirmation e-mail. #. TRANS: %s is the StatusNet sitename. #, php-format msgid "Confirm your registration on %s" -msgstr "" +msgstr "Confirmeu el vostre registre a %s" #. TRANS: Body for confirmation e-mail. #. TRANS: %1$s is the StatusNet sitename, %2$s is the confirmation URL. @@ -108,7 +108,7 @@ msgstr "" #. TRANS: Form instructions. msgid "Enter your email address to register for an account." -msgstr "" +msgstr "Introduïu la vostra adreça electrònica per registrar un compte." #. TRANS: Field label on form for registering an account. msgctxt "LABEL" @@ -179,8 +179,8 @@ msgstr "No és una adreça de correu electrònic vàlida." #. TRANS: %s is the StatusNet sitename. #, php-format msgid "Welcome to %s" -msgstr "" +msgstr "Us donem la benvinguda a %s" #. TRANS: Plugin description. msgid "Use email only for registration." -msgstr "" +msgstr "Utilitza el correu electrònic només per al registre." diff --git a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po index ab8ee48444..24539d501f 100644 --- a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:29+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po new file mode 100644 index 0000000000..c334c6fd70 --- /dev/null +++ b/plugins/EmailRegistration/locale/eu/LC_MESSAGES/EmailRegistration.po @@ -0,0 +1,192 @@ +# Translation of StatusNet - EmailRegistration to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailRegistration\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:29+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-emailregistration\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception trown when registration by e-mail is not allowed. +msgid "Registration not allowed." +msgstr "Ezin da izen eman." + +#. TRANS: Client exception trown when trying to register without an invitation. +msgid "Sorry, only invited people can register." +msgstr "Barkatu, soilik gonbidatuak erregitra daitezke." + +#. TRANS: Client exception thrown when no confirmation code was provided. +msgid "No confirmation code." +msgstr "Ez dago baieztatze koderik." + +#. TRANS: Client exception trown when using an invitation multiple times. +msgid "Invitation already used." +msgstr "Gonbidapen hau dagoeneko erabili da." + +#. TRANS: Client exception thrown when given confirmation code was not issued. +msgid "No such confirmation code." +msgstr "Baieztapen kode hori falta da." + +#. TRANS: Title for registration page. +msgctxt "TITLE" +msgid "Register" +msgstr "Izen eman" + +#. TRANS: Title for page where to register with a confirmation code. +msgctxt "TITLE" +msgid "Complete registration" +msgstr "Izen ematea osatu" + +#. TRANS: Confirmation text after initial registration. +#. TRANS: %s an e-mail address. +#, php-format +msgid "" +"An email was sent to %s to confirm that address. Check your email inbox for " +"instructions." +msgstr "" +"Mezu bat bidali da %s helbidea baieztatzeko. Begiratu zure sarrera " +"postontzia argibideetarako." + +#. TRANS: Client exception trown when trying to set password with an invalid confirmation code. +msgid "No confirmation thing." +msgstr "Konfirmazio kode okerra." + +#. TRANS: Error text when trying to register without agreeing to the terms. +msgid "You must accept the terms of service and privacy policy to register." +msgstr "" +"Izen emateko erabilera baldintzak eta pribazitate politika onartu behar " +"dituzu." + +#. TRANS: Error text when trying to register without a password. +msgid "You must set a password" +msgstr "Pasahitza zehaztu behar duzu." + +#. TRANS: Error text when trying to register with too short a password. +msgid "Password must be 6 or more characters." +msgstr "Pasahitzak 6 edo karaktere gehiago behar ditu." + +#. TRANS: Error text when trying to register without providing the same password twice. +msgid "Passwords do not match." +msgstr "Pasahitzak ez datoz bat." + +#. TRANS: Exception trown when using an invitation multiple times. +msgid "Failed to register user." +msgstr "Izen ematean akatsa." + +#. TRANS: Subject for confirmation e-mail. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "Confirm your registration on %s" +msgstr "Erregistro baieztapena %s-en" + +#. TRANS: Body for confirmation e-mail. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the confirmation URL. +#, php-format +msgid "" +"Someone (probably you) has requested an account on %1$s using this email " +"address.\n" +"To confirm the address, click the following URL or copy it into the address " +"bar of your browser.\n" +"%2$s\n" +"If it was not you, you can safely ignore this message." +msgstr "" +"Norbaitek (ziurrenik zuk) email kontu hau erabiliz %1$s gunean izen eman " +"nahi du.\n" +"Helbidea baieztatzeko, hurrengo URLan klik egin edo kopiatu ezazu zure " +"nabigatzailearen helbide barran.\n" +"%2$s\n" +"Ez bazara zu izan, ez egin kasurik mezu honi." + +#. TRANS: Form instructions. +msgid "Enter your email address to register for an account." +msgstr "Sartu zure eposta helbidea izen emateko." + +#. TRANS: Field label on form for registering an account. +msgctxt "LABEL" +msgid "E-mail address" +msgstr "Email helbidea" + +#. TRANS: Button text for registering an account. +#. TRANS: Button text for action to register. +msgctxt "BUTTON" +msgid "Register" +msgstr "Izen eman" + +#. TRANS: Form instructions. +msgid "Enter a password to confirm your new account." +msgstr "Sartu pasahitz bat zure kontu berria baieztatzeko." + +#. TRANS: Field label in e-mail registration form. +msgctxt "LABEL" +msgid "User name" +msgstr "Erabiltzaile izena" + +#. TRANS: Field label. +msgid "Email address" +msgstr "Email helbidea" + +#. TRANS: Field label on account registration page. +msgid "Password" +msgstr "Pasahitza" + +#. TRANS: Field title on account registration page. +msgid "6 or more characters." +msgstr "6 edo karaktere gehiago." + +#. TRANS: Field label on account registration page. In this field the password has to be entered a second time. +msgctxt "PASSWORD" +msgid "Confirm" +msgstr "Baieztatu" + +#. TRANS: Field title on account registration page. +msgid "Same as password above." +msgstr "Gaineko pasahitzaren berdina." + +#. TRANS: Checkbox title for terms of service and privacy policy. +#, php-format +msgid "" +"I agree to the Terms of service and Privacy policy of this site." +msgstr "" +"Ados nago gune hontako erabilera baldintzekin eta pribazitate politikarekin." + +#. TRANS: Error text when trying to register with an already registered e-mail address. +#. TRANS: %s is the URL to recover password at. +#, php-format +msgid "" +"A user with that email address already exists. You can use the password recovery tool to recover a missing password." +msgstr "" +"Dagoeneko badago email kontu horrekin erabiltzaile bat. Pasahitz berreskuratze tresna erabil dezakezu pasahitz berri bat " +"lortzeko." + +#. TRANS: Error text when trying to register with an invalid e-mail address. +msgid "Not a valid email address." +msgstr "Email helbide horrek ez du balio." + +#. TRANS: Subject for confirmation e-mail. +#. TRANS: %s is the StatusNet sitename. +#, php-format +msgid "Welcome to %s" +msgstr "Ongi etorri %s-ra" + +#. TRANS: Plugin description. +msgid "Use email only for registration." +msgstr "Erabili eposta izen ematekosoilik." diff --git a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po index 34b9cb2d42..9daf40ddf1 100644 --- a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po @@ -5,6 +5,7 @@ # Author: Crochet.david # Author: Iketsi # Author: Od1n +# Author: Valeryan 24 # -- # This file is distributed under the same license as the StatusNet package. # @@ -12,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" @@ -187,7 +189,7 @@ msgstr "Adresse courriel invalide." #. TRANS: %s is the StatusNet sitename. #, php-format msgid "Welcome to %s" -msgstr "" +msgstr "Bienvenue à %s" #. TRANS: Plugin description. msgid "Use email only for registration." diff --git a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po index 420f29f901..5a85c9f8e4 100644 --- a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:29+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po index 72613f5945..11c8aac31b 100644 --- a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po index 846007b937..4bf8afd71b 100644 --- a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po index d401858c4a..c03ebf9b1a 100644 --- a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po index 4bdddceabf..98928636b8 100644 --- a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:29+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po index a2607f5ec9..ec4af350fc 100644 --- a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po index f08235ae80..d269f96ba9 100644 --- a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" diff --git a/plugins/EmailReminder/locale/EmailReminder.pot b/plugins/EmailReminder/locale/EmailReminder.pot index 4dc6f55c46..f1855cabb6 100644 --- a/plugins/EmailReminder/locale/EmailReminder.pot +++ b/plugins/EmailReminder/locale/EmailReminder.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po index 9388d679cb..884771fe78 100644 --- a/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ar/LC_MESSAGES/EmailReminder.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:30+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" diff --git a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po index e7420f17d3..fb0f2bb6d3 100644 --- a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" diff --git a/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po new file mode 100644 index 0000000000..e785248e28 --- /dev/null +++ b/plugins/EmailReminder/locale/eu/LC_MESSAGES/EmailReminder.po @@ -0,0 +1,53 @@ +# Translation of StatusNet - EmailReminder to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailReminder\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:31+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-emailreminder\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Send email reminders for various things." +msgstr "Bidali email ohartarazpenak gauza anitzetarako." + +#. TRANS: Server exception thrown when a reminder record could not be inserted into the database. +msgid "Database error inserting reminder record." +msgstr "Datubase akatsa ohartarazpe aukera txertatzean." + +#. TRANS: Subject for reminder e-mail. +msgid "Reminder - please confirm your registration!" +msgstr "Ohartarazpena - mesedez baieztatu zure izen ematea!" + +#. TRANS: Subject for reminder e-mail. +msgid "Second reminder - please confirm your registration!" +msgstr "Bigarren ohartarazpena - mesedez baieztatu zure izen ematea!" + +#. TRANS: Subject for reminder e-mail. +msgid "Final reminder - please confirm your registration!" +msgstr "Azken ohartarazpena - mesedez baieztatu zure izen ematea!" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Reminder - You have been invited to join %s!" +msgstr "Ohartarazpena - gonbidatuta zaude %s gunearekin bat egitera!" + +#. TRANS: Subject for reminder e-mail. %s is the StatusNet sitename. +#, php-format +msgid "Final reminder - you have been invited to join %s!" +msgstr "Azken ohartarazpena - gonbidatuta zaude %s gunearekin bat egitera!" diff --git a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po index e270068e60..945257ef74 100644 --- a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" diff --git a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po index 507436b677..df7f53e9a5 100644 --- a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" diff --git a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po index 9c2c160110..64ef50e321 100644 --- a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" diff --git a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po index 4e399117ca..4ae16765cd 100644 --- a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:31+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" diff --git a/plugins/EmailSummary/locale/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index 5433b1cbbc..daa9e74c6a 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 7ae2548a47..7d016dcb57 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" @@ -24,7 +25,7 @@ msgstr "" #. TRANS: Subject for e-mail. #, php-format msgid "Your latest updates from %s" -msgstr "" +msgstr "Les vostres darreres actualitzacions de %s" #. TRANS: Text in e-mail summary. #. TRANS: %1$s is the StatusNet sitename, %2$s is the recipient's profile name. diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index 2567688e6b..14d527b759 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po new file mode 100644 index 0000000000..90c9ae33a7 --- /dev/null +++ b/plugins/EmailSummary/locale/eu/LC_MESSAGES/EmailSummary.po @@ -0,0 +1,52 @@ +# Translation of StatusNet - EmailSummary to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - EmailSummary\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-emailsummary\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Subject for e-mail. +#, php-format +msgid "Your latest updates from %s" +msgstr "Zure azken eguneraketak %s(e)n" + +#. TRANS: Text in e-mail summary. +#. TRANS: %1$s is the StatusNet sitename, %2$s is the recipient's profile name. +#, php-format +msgid "Recent updates from %1$s for %2$s:" +msgstr "%2$s(e)n eguneraketa berrienak %1$s(e)n:" + +#. TRANS: Link text for link to conversation view. +msgid "in context" +msgstr "kontestuan" + +#. TRANS: Link text for link to e-mail settings. +#. TRANS: %1$s is a link to the e-mail settings, %2$s is the StatusNet sitename. +#, php-format +msgid "change your email settings for %2$s" +msgstr "aldatu zure email aukerak %2$s(e)n" + +#. TRANS: Plugin description. +msgid "Send an email summary of the inbox to users." +msgstr "Bidali email laburpen bat erabiltzaileen postontzira." + +#. TRANS: Checkbox label in e-mail preferences form. +msgid "Send me a periodic summary of updates from my network" +msgstr "Bidali neri eguneraketen laburpen bat aldioro nere saretik." diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index b907089b77..b63282fe34 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f0c09a1775..f6770bb33b 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:36+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8f4e25e44b..8a342b0c8b 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:36+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0a0262be67..6bdff87a19 100644 --- a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:36+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po index dd7a1325fd..9bf72e8e1d 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:36+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" diff --git a/plugins/Event/event.css b/plugins/Event/event.css index 7fbb67d732..e5af5cf515 100644 --- a/plugins/Event/event.css +++ b/plugins/Event/event.css @@ -13,4 +13,27 @@ overflow-x: hidden; /* add padding to account for vertical scrollbar */ padding-right: 20px; -} \ No newline at end of file +} + +.attending-list { list-style-type: none; float: left; width: 100%; } + +#form_event_rsvp { clear: left; } + +li.rsvp-list { float: left; clear: left; } + +li.rsvp-list ul.entities { + display:inline; +} +li.rsvp-list .entities li { + list-style-type: none; + margin-right: 3px; + margin-bottom: 8px; + display: inline; +} +li.rsvp-list .entities li .photo { + margin: 0 !important; + float: none !important; +} +li.rsvp-list .entities li .fn { + display: none; +} diff --git a/plugins/Event/eventlistitem.php b/plugins/Event/eventlistitem.php index fb27704461..b563e228f9 100644 --- a/plugins/Event/eventlistitem.php +++ b/plugins/Event/eventlistitem.php @@ -152,14 +152,38 @@ class EventListItem extends NoticeListItemAdapter $out->elementStart('div', 'event-rsvps'); // TRANS: Field label for event description. - $out->element('strong', null, _m('Attending:')); - $out->element('span', 'event-rsvps', - // TRANS: RSVP counts. - // TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. - sprintf(_m('Yes: %1$d No: %2$d Maybe: %3$d'), - count($rsvps[RSVP::POSITIVE]), - count($rsvps[RSVP::NEGATIVE]), - count($rsvps[RSVP::POSSIBLE]))); + + $out->text(_('Attending:')); + $out->elementStart('ul', 'attending-list'); + + foreach ($rsvps as $verb => $responses) { + $out->elementStart('li', 'rsvp-list'); + switch ($verb) + { + case RSVP::POSITIVE: + $out->text(_('Yes:')); + break; + case RSVP::NEGATIVE: + $out->text(_('No:')); + break; + case RSVP::POSSIBLE: + $out->text(_('Maybe:')); + break; + } + $ids = array(); + foreach ($responses as $response) { + $ids[] = $response->profile_id; + } + $ids = array_slice($ids, 0, ProfileMiniList::MAX_PROFILES + 1); + $profiles = Profile::pivotGet('id', $ids); + $profile = new ArrayWrapper(array_values($profiles)); + $minilist = new ProfileMiniList($profile, $out); + $minilist->show(); + + $out->elementEnd('li'); + } + + $out->elementEnd('ul'); $out->elementEnd('div'); $user = common_current_user(); diff --git a/plugins/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index 3afaea6aaf..20a95196fb 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -473,15 +473,3 @@ msgstr "" #: eventlistitem.php:146 msgid "Description:" msgstr "" - -#. TRANS: Field label for event description. -#: eventlistitem.php:155 -msgid "Attending:" -msgstr "" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#: eventlistitem.php:159 -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "" diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po index 9c47135452..579ac41e38 100644 --- a/plugins/Event/locale/ar/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:37+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -420,13 +421,3 @@ msgstr "المكان:" #. TRANS: Field label for event description. msgid "Description:" msgstr "الوصف:" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "الحضور:" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "نعم: %1$d لا: %2$d ربما: %3$d" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index 18cfef4bb5..235936dd8c 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Event to Breton (Brezhoneg) # Exported from translatewiki.net # +# Author: Fulup # Author: Y-M D # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:37+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -64,7 +66,7 @@ msgstr "" #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." -msgstr "Nann-kevreet." +msgstr "Digevreet." #. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." @@ -412,13 +414,3 @@ msgstr "Lec'hiadur :" #. TRANS: Field label for event description. msgid "Description:" msgstr "Deskrivadur :" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Ya : %1$d Nann : %2$d Marteze : %3$d" diff --git a/plugins/Event/locale/ca/LC_MESSAGES/Event.po b/plugins/Event/locale/ca/LC_MESSAGES/Event.po index c7d27ea5ee..f2bdcb17f7 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -68,7 +69,7 @@ msgstr "No s'ha iniciat la sessió." #. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." -msgstr "" +msgstr "Tramesa de formulari no esperada." #. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." @@ -88,7 +89,7 @@ msgstr "No existeix l'esdeveniment." #. TRANS: %1$s is a user nickname, %2$s is an event title. #, php-format msgid "%1$s's RSVP for \"%2$s\"" -msgstr "" +msgstr "RSVP de %1$s per a «%2$s»" #. TRANS: Possible status for RSVP ("please respond") item. msgid "You will attend this event." @@ -115,7 +116,7 @@ msgstr "RSVP nova" #. TRANS: Client exception thrown when trying to RSVP ("please respond") while not logged in. #. TRANS: Client exception thrown when trying tp RSVP ("please respond") while not logged in. msgid "You must be logged in to RSVP for an event." -msgstr "" +msgstr "Cal que hàgiu iniciat una sessió per a una RSVP d'un esdeveniment." #. TRANS: Client exception thrown when using an invalid value for RSVP ("please respond"). msgid "Unknown submit value." @@ -272,24 +273,24 @@ msgstr "Ja existeix la RSVP." #. TRANS: Exception thrown when requesting an undefined verb for RSVP. #, php-format msgid "Unknown verb \"%s\"." -msgstr "" +msgstr "Verb desconegut «%s»." #. TRANS: Exception thrown when requesting an undefined code for RSVP. #, php-format msgid "Unknown code \"%s\"." -msgstr "" +msgstr "Codi desconegut «%s»." #. TRANS: Server exception thrown when requesting a non-exsting notice for an RSVP ("please respond"). #. TRANS: %s is the RSVP with the missing notice. #, php-format msgid "RSVP %s does not correspond to a notice in the database." -msgstr "" +msgstr "La RSVP %s no correspon a cap avís de la base de dades." #. TRANS: Exception thrown when requesting a non-existing profile. #. TRANS: %s is the ID of the non-existing profile. #, php-format msgid "No profile with ID %s." -msgstr "" +msgstr "No hi ha cap perfil amb l'ID %s." #. TRANS: Exception thrown when requesting a non-existing event. #. TRANS: %s is the ID of the non-existing event. @@ -333,7 +334,7 @@ msgstr "Codi de resposta desconegut %s." #. TRANS: Used as event title when not event title is available. #. TRANS: Used as: Username [is [not ] attending|might attend] an unknown event. msgid "an unknown event" -msgstr "" +msgstr "un esdeveniment desconegut" #. TRANS: Plain text version of an RSVP ("please respond") status for a user. #. TRANS: %1$s is a profile name, %2$s is an event title. @@ -407,13 +408,3 @@ msgstr "Ubicació:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Descripció:" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Assistents:" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Sí: %1$d No: %2$d Potser: %3$d" diff --git a/plugins/Event/locale/de/LC_MESSAGES/Event.po b/plugins/Event/locale/de/LC_MESSAGES/Event.po index a480e4b466..2c2be04a39 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Giftpflanze +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -23,23 +25,23 @@ msgstr "" #. TRANS: 0 minutes abbreviated. Used in a list. msgid "(0 min)" -msgstr "" +msgstr "(0 min)" #. TRANS: 30 minutes abbreviated. Used in a list. msgid "(30 min)" -msgstr "" +msgstr "(30 min)" #. TRANS: 1 hour. Used in a list. msgid "(1 hour)" -msgstr "" +msgstr "(1 Stunde)" -#, php-format +#, fuzzy, php-format msgid "(%.1f hours)" -msgstr "" +msgstr "(1 Stunde)" -#, php-format +#, fuzzy, php-format msgid "(%d hours)" -msgstr "" +msgstr "(1 Stunde)" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." @@ -68,15 +70,15 @@ msgstr "" #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." -msgstr "" +msgstr "Nicht angemeldet." #. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." -msgstr "" +msgstr "Unerwartete Formulareingabe." #. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." -msgstr "" +msgstr "Diese Aktion ist auf AJAX beschränkt." #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". @@ -182,9 +184,9 @@ msgid "Start time" msgstr "Startzeit" #. TRANS: Field title on event form. %s is the abbreviated timezone -#, fuzzy, php-format +#, php-format msgid "Time the event starts (%s)." -msgstr "Zeit, an der das Ereignis anfängt." +msgstr "Zeit, an der das Ereignis anfängt (%s)." #. TRANS: Field label on event form. msgctxt "LABEL" @@ -207,7 +209,7 @@ msgstr "Zeit, zu der das Ereignis zu Ende ist." #. TRANS: Field label on event form. msgctxt "LABEL" msgid "Where?" -msgstr "" +msgstr "Wo?" #. TRANS: Field title on event form. msgid "Event location." @@ -404,7 +406,7 @@ msgstr "Ereignis muss ein Enddatum haben." #. TRANS: Client exception thrown when trying to post an event with an invalid URL. msgid "URL must be valid." -msgstr "" +msgstr "URL muss gültig sein." #. TRANS: Field label for event description. msgid "Time:" @@ -417,13 +419,3 @@ msgstr "Örtlichkeit:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Beschreibung:" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Teilnehmende:" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Ja: %1$d Nein: %2$d Vielleicht: %3$d" diff --git a/plugins/Event/locale/eu/LC_MESSAGES/Event.po b/plugins/Event/locale/eu/LC_MESSAGES/Event.po new file mode 100644 index 0000000000..5f42807abd --- /dev/null +++ b/plugins/Event/locale/eu/LC_MESSAGES/Event.po @@ -0,0 +1,421 @@ +# Translation of StatusNet - Event to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# Author: Xabier Armendaritz +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Event\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:37+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-event\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" +msgstr "(0 min)" + +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" +msgstr "(30 min)" + +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" +msgstr "(ordubete)" + +#, fuzzy, php-format +msgid "(%.1f hours)" +msgstr "(ordubete)" + +#, fuzzy, php-format +msgid "(%d hours)" +msgstr "(ordubete)" + +#. TRANS: Client exception thrown when trying to create an event that already exists. +msgid "Event already exists." +msgstr "Ekitaldea exisititzen da jada." + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "\"%1$s\" %2$s - %3$s (%4$s): %5$s" + +#. TRANS: Rendered event description. %1$s is a title, %2$s is start time, %3$s is start time, +#. TRANS: %4$s is end time, %5$s is end time, %6$s is location, %7$s is description. +#. TRANS: Class names should not be translated. +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Saioa hasi gabe." + +#. TRANS: Client error when submitting a form with unexpected information. +msgid "Unexpected form submission." +msgstr "Ustekabeko inprimaki bidalketa." + +#. TRANS: Client error displayed when using an action in a non-AJAX way. +msgid "This action is AJAX only." +msgstr "Ekintza hau AJAX bidez egin liteke soilik." + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +#. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. +msgid "No such RSVP." +msgstr "Ez horrelako RSVPrik." + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "Ez dago ekitaldi hori." + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "%1$s(r)en RSVP \"%2$s(r)entzako\"" + +#. TRANS: Possible status for RSVP ("please respond") item. +msgid "You will attend this event." +msgstr "Ekitaldi hontara joango zara." + +#. TRANS: Possible status for RSVP ("please respond") item. +msgid "You will not attend this event." +msgstr "Ez zara ekitaldi hontara joango." + +#. TRANS: Possible status for RSVP ("please respond") item. +msgid "You might attend this event." +msgstr "Ekitaldi hontara joan beharko zenuke." + +#. TRANS: Button text to cancel responding to an RSVP ("please respond") item. +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Utzi" + +#. TRANS: Title for RSVP ("please respond") action. +msgctxt "TITLE" +msgid "New RSVP" +msgstr "RSVP berria" + +#. TRANS: Client exception thrown when trying to RSVP ("please respond") while not logged in. +#. TRANS: Client exception thrown when trying tp RSVP ("please respond") while not logged in. +msgid "You must be logged in to RSVP for an event." +msgstr "Ekitaldi baten RSVP eskatzeko saioa hasi behar duzu." + +#. TRANS: Client exception thrown when using an invalid value for RSVP ("please respond"). +msgid "Unknown submit value." +msgstr "Bidalitako balio ezezaguna." + +#. TRANS: Page title after creating an event. +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "Ekitaldia gorderik" + +#. TRANS: Title for RSVP ("please respond") action. +msgctxt "TITLE" +msgid "Cancel RSVP" +msgstr "Utzi RSVP" + +#. TRANS: Content for a deleted RSVP list item (RSVP stands for "please respond"). +msgid "Deleted." +msgstr "Ezabaturik." + +#. TRANS: Field label on form to RSVP ("please respond") for an event. +msgid "RSVP:" +msgstr "RSVP:" + +#. TRANS: Button text for RSVP ("please respond") reply to confirm attendence. +msgctxt "BUTTON" +msgid "Yes" +msgstr "Bai" + +#. TRANS: Button text for RSVP ("please respond") reply to deny attendence. +msgctxt "BUTTON" +msgid "No" +msgstr "Ez" + +#. TRANS: Button text for RSVP ("please respond") reply to indicate one might attend. +msgctxt "BUTTON" +msgid "Maybe" +msgstr "Agian" + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Title" +msgstr "Titulua" + +#. TRANS: Field title on event form. +msgid "Title of the event." +msgstr "Ekitaldiaren titulua." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Start date" +msgstr "Hasera data" + +#. TRANS: Field title on event form. +msgid "Date the event starts." +msgstr "Ekitaldia hasten den data." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Start time" +msgstr "Hasera ordua" + +#. TRANS: Field title on event form. %s is the abbreviated timezone +#, php-format +msgid "Time the event starts (%s)." +msgstr "Ekitaldi hau hasten den ordua (%s)." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "End date" +msgstr "Amaiera data" + +#. TRANS: Field title on event form. +msgid "Date the event ends." +msgstr "Ekitaldia amaitzen den data." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "End time" +msgstr "Amaiera ordua" + +#. TRANS: Field title on event form. +msgid "Time the event ends." +msgstr "Ekitaldia amaitzen den ordua." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Where?" +msgstr "Non?" + +#. TRANS: Field title on event form. +msgid "Event location." +msgstr "Ekitaldiaren kokapena." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +#. TRANS: Field title on event form. +msgid "URL for more information." +msgstr "Informazio gehiagorako URLa." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Description" +msgstr "Deskribapena" + +#. TRANS: Field title on event form. +msgid "Description of the event." +msgstr "Ekitaldiaren deskribapena." + +#. TRANS: Button text to save an event.. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gorde" + +#. TRANS: Plugin description. +msgid "Event invitations and RSVPs." +msgstr "Ekitaldi gonbidapenak eta RSVPak." + +#. TRANS: Title for event application. +msgctxt "TITLE" +msgid "Event" +msgstr "Ekitaldia" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "Ekitnza objetu gehiegi." + +#. TRANS: Exception thrown when event plugin comes across a non-event type object. +msgid "Wrong type for object." +msgstr "Objetu mota okerra." + +#. TRANS: Exception thrown when trying to RSVP for an unknown event. +msgid "RSVP for unknown event." +msgstr "Ekitaldi ezezagunerako RSVP." + +#. TRANS: Exception thrown when event plugin comes across a undefined verb. +msgid "Unknown verb for events." +msgstr "Ekitaldientzako aditz ezezaguna." + +#. TRANS: Exception thrown when event plugin comes across a unknown object type. +msgid "Unknown object type." +msgstr "Objetu mota ezezaguna." + +#. TRANS: Exception thrown when referring to a notice that is not an event an in event context. +msgid "Unknown event notice." +msgstr "Ekitaldi ohar ezezaguna." + +#. TRANS: Client exception thrown when trying to save an already existing RSVP ("please respond"). +msgid "RSVP already exists." +msgstr "RSVPa existizen da dagoeneko." + +#. TRANS: Exception thrown when requesting an undefined verb for RSVP. +#, php-format +msgid "Unknown verb \"%s\"." +msgstr "\"%s\" aditz ezezaguna." + +#. TRANS: Exception thrown when requesting an undefined code for RSVP. +#, php-format +msgid "Unknown code \"%s\"." +msgstr "\"%s\" kode ezezaguna." + +#. TRANS: Server exception thrown when requesting a non-exsting notice for an RSVP ("please respond"). +#. TRANS: %s is the RSVP with the missing notice. +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "%s RSVPak ez dator bat datubaseko ohar batekin." + +#. TRANS: Exception thrown when requesting a non-existing profile. +#. TRANS: %s is the ID of the non-existing profile. +#, php-format +msgid "No profile with ID %s." +msgstr "%s IDarekin profilik ez dago." + +#. TRANS: Exception thrown when requesting a non-existing event. +#. TRANS: %s is the ID of the non-existing event. +#, php-format +msgid "No event with ID %s." +msgstr "%s IDarekin ekitaldirik ez." + +#. TRANS: HTML version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile URL, %2$s a profile name, +#. TRANS: %3$s is an event URL, %4$s an event title. +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" +"%2$s %4" +"$s(e)ra joango da." + +#. TRANS: HTML version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile URL, %2$s a profile name, +#. TRANS: %3$s is an event URL, %4$s an event title. +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" +"%2$s ez da %4$s(e)ra joango." + +#. TRANS: HTML version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile URL, %2$s a profile name, +#. TRANS: %3$s is an event URL, %4$s an event title. +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" +"%2$s %4" +"$s(e)ra joango da agian." + +#. TRANS: Exception thrown when requesting a user's RSVP status for a non-existing response code. +#. TRANS: %s is the non-existing response code. +#, php-format +msgid "Unknown response code %s." +msgstr "%s erantzun kode ezezaguna." + +#. TRANS: Used as event title when not event title is available. +#. TRANS: Used as: Username [is [not ] attending|might attend] an unknown event. +msgid "an unknown event" +msgstr "ekitaldi ezezagun bat" + +#. TRANS: Plain text version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile name, %2$s is an event title. +#, php-format +msgid "%1$s is attending %2$s." +msgstr "%1$s %2$s(e)ra joango da." + +#. TRANS: Plain text version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile name, %2$s is an event title. +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "%1$s ez da %2$s(e)ra joango." + +#. TRANS: Plain text version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile name, %2$s is an event title. +#, php-format +msgid "%1$s might attend %2$s." +msgstr "%1$s %2$s(e)ra joango da agian." + +#. TRANS: Title for new event form. +msgctxt "TITLE" +msgid "New event" +msgstr "Ekitaldi berria" + +#. TRANS: Client exception thrown when trying to post an event while not logged in. +msgid "Must be logged in to post a event." +msgstr "Saioa hasi behar duzu ekitaldi bat bidaltzeko." + +#. TRANS: Client exception thrown when trying to post an event without providing a title. +msgid "Title required." +msgstr "Titulua beharrezkoa." + +#. TRANS: Client exception thrown when trying to post an event without providing a start date. +msgid "Start date required." +msgstr "Hasera data beharrezkoa." + +#. TRANS: Client exception thrown when trying to post an event without providing an end date. +msgid "End date required." +msgstr "Bukaera data beharrezkoa." + +#. TRANS: Client exception thrown when trying to post an event with a date that cannot be processed. +#. TRANS: %s is the data that could not be processed. +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "Ezin izan da \"%s\" data arakatu." + +#. TRANS: Client exception thrown when trying to post an event without providing a title. +msgid "Event must have a title." +msgstr "Ekitaldiak titulu bat behar du." + +#. TRANS: Client exception thrown when trying to post an event without providing a start time. +msgid "Event must have a start time." +msgstr "Ekitaldiak hasera ordu bat behar du." + +#. TRANS: Client exception thrown when trying to post an event without providing an end time. +msgid "Event must have an end time." +msgstr "Ekitaldiak amaiera ordu bat behar du." + +#. TRANS: Client exception thrown when trying to post an event with an invalid URL. +msgid "URL must be valid." +msgstr "URLak baliozkoa izan behar du." + +#. TRANS: Field label for event description. +msgid "Time:" +msgstr "Ordua:" + +#. TRANS: Field label for event description. +msgid "Location:" +msgstr "Kokapena:" + +#. TRANS: Field label for event description. +msgid "Description:" +msgstr "Deskribapena:" diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index d1aca25ab5..a673f38e51 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -5,6 +5,7 @@ # Author: Crochet.david # Author: Iketsi # Author: Od1n +# Author: Valeryan 24 # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -13,13 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -27,23 +29,23 @@ msgstr "" #. TRANS: 0 minutes abbreviated. Used in a list. msgid "(0 min)" -msgstr "" +msgstr "(0 min)" #. TRANS: 30 minutes abbreviated. Used in a list. msgid "(30 min)" -msgstr "" +msgstr "(30 min)" #. TRANS: 1 hour. Used in a list. msgid "(1 hour)" -msgstr "" +msgstr "(1 heure)" -#, php-format +#, fuzzy, php-format msgid "(%.1f hours)" -msgstr "" +msgstr "(1 heure)" -#, php-format +#, fuzzy, php-format msgid "(%d hours)" -msgstr "" +msgstr "(1 heure)" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." @@ -421,13 +423,3 @@ msgstr "Lieu :" #. TRANS: Field label for event description. msgid "Description:" msgstr "Description :" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Participants :" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Oui : %1$d Non : %2$d Peut-être : %3$d" diff --git a/plugins/Event/locale/gl/LC_MESSAGES/Event.po b/plugins/Event/locale/gl/LC_MESSAGES/Event.po new file mode 100644 index 0000000000..2984aaba9b --- /dev/null +++ b/plugins/Event/locale/gl/LC_MESSAGES/Event.po @@ -0,0 +1,410 @@ +# Translation of StatusNet - Event to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Event\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-event\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" +msgstr "(0 min)" + +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" +msgstr "(30 min)" + +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" +msgstr "(1 hora)" + +#, fuzzy, php-format +msgid "(%.1f hours)" +msgstr "(1 hora)" + +#, fuzzy, php-format +msgid "(%d hours)" +msgstr "(1 hora)" + +#. TRANS: Client exception thrown when trying to create an event that already exists. +msgid "Event already exists." +msgstr "" + +#. TRANS: Event description. %1$s is a title, %2$s is start time, %3$s is end time, +#. TRANS: %4$s is location, %5$s is a description. +#, php-format +msgid "\"%1$s\" %2$s - %3$s (%4$s): %5$s" +msgstr "" + +#. TRANS: Rendered event description. %1$s is a title, %2$s is start time, %3$s is start time, +#. TRANS: %4$s is end time, %5$s is end time, %6$s is location, %7$s is description. +#. TRANS: Class names should not be translated. +#, php-format +msgid "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Non iniciou sesión." + +#. TRANS: Client error when submitting a form with unexpected information. +msgid "Unexpected form submission." +msgstr "" + +#. TRANS: Client error displayed when using an action in a non-AJAX way. +msgid "This action is AJAX only." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing RSVP. +#. TRANS: RSVP stands for "Please reply". +#. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. +msgid "No such RSVP." +msgstr "" + +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." +msgstr "" + +#. TRANS: Title for event. +#. TRANS: %1$s is a user nickname, %2$s is an event title. +#, php-format +msgid "%1$s's RSVP for \"%2$s\"" +msgstr "" + +#. TRANS: Possible status for RSVP ("please respond") item. +msgid "You will attend this event." +msgstr "" + +#. TRANS: Possible status for RSVP ("please respond") item. +msgid "You will not attend this event." +msgstr "" + +#. TRANS: Possible status for RSVP ("please respond") item. +msgid "You might attend this event." +msgstr "" + +#. TRANS: Button text to cancel responding to an RSVP ("please respond") item. +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Cancelar" + +#. TRANS: Title for RSVP ("please respond") action. +msgctxt "TITLE" +msgid "New RSVP" +msgstr "" + +#. TRANS: Client exception thrown when trying to RSVP ("please respond") while not logged in. +#. TRANS: Client exception thrown when trying tp RSVP ("please respond") while not logged in. +msgid "You must be logged in to RSVP for an event." +msgstr "" + +#. TRANS: Client exception thrown when using an invalid value for RSVP ("please respond"). +msgid "Unknown submit value." +msgstr "" + +#. TRANS: Page title after creating an event. +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "" + +#. TRANS: Title for RSVP ("please respond") action. +msgctxt "TITLE" +msgid "Cancel RSVP" +msgstr "" + +#. TRANS: Content for a deleted RSVP list item (RSVP stands for "please respond"). +msgid "Deleted." +msgstr "Borrado." + +#. TRANS: Field label on form to RSVP ("please respond") for an event. +msgid "RSVP:" +msgstr "" + +#. TRANS: Button text for RSVP ("please respond") reply to confirm attendence. +msgctxt "BUTTON" +msgid "Yes" +msgstr "Si" + +#. TRANS: Button text for RSVP ("please respond") reply to deny attendence. +msgctxt "BUTTON" +msgid "No" +msgstr "Non" + +#. TRANS: Button text for RSVP ("please respond") reply to indicate one might attend. +msgctxt "BUTTON" +msgid "Maybe" +msgstr "Quizais" + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Title" +msgstr "Título" + +#. TRANS: Field title on event form. +msgid "Title of the event." +msgstr "Título do evento." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Start date" +msgstr "Data de inicio" + +#. TRANS: Field title on event form. +msgid "Date the event starts." +msgstr "Data na que comeza o evento." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Start time" +msgstr "Hora de inicio" + +#. TRANS: Field title on event form. %s is the abbreviated timezone +#, php-format +msgid "Time the event starts (%s)." +msgstr "Hora na que comeza o evento (%s)." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "End date" +msgstr "Data de fin" + +#. TRANS: Field title on event form. +msgid "Date the event ends." +msgstr "Data na que finaliza o evento." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "End time" +msgstr "Hora de fin" + +#. TRANS: Field title on event form. +msgid "Time the event ends." +msgstr "Hora na que finaliza o evento." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Where?" +msgstr "Onde?" + +#. TRANS: Field title on event form. +msgid "Event location." +msgstr "Lugar do evento." + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "URL" +msgstr "URL" + +#. TRANS: Field title on event form. +msgid "URL for more information." +msgstr "" + +#. TRANS: Field label on event form. +msgctxt "LABEL" +msgid "Description" +msgstr "Descrición" + +#. TRANS: Field title on event form. +msgid "Description of the event." +msgstr "Descrición do evento." + +#. TRANS: Button text to save an event.. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gardar" + +#. TRANS: Plugin description. +msgid "Event invitations and RSVPs." +msgstr "" + +#. TRANS: Title for event application. +msgctxt "TITLE" +msgid "Event" +msgstr "Evento" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "" + +#. TRANS: Exception thrown when event plugin comes across a non-event type object. +msgid "Wrong type for object." +msgstr "" + +#. TRANS: Exception thrown when trying to RSVP for an unknown event. +msgid "RSVP for unknown event." +msgstr "" + +#. TRANS: Exception thrown when event plugin comes across a undefined verb. +msgid "Unknown verb for events." +msgstr "" + +#. TRANS: Exception thrown when event plugin comes across a unknown object type. +msgid "Unknown object type." +msgstr "" + +#. TRANS: Exception thrown when referring to a notice that is not an event an in event context. +msgid "Unknown event notice." +msgstr "" + +#. TRANS: Client exception thrown when trying to save an already existing RSVP ("please respond"). +msgid "RSVP already exists." +msgstr "" + +#. TRANS: Exception thrown when requesting an undefined verb for RSVP. +#, php-format +msgid "Unknown verb \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when requesting an undefined code for RSVP. +#, php-format +msgid "Unknown code \"%s\"." +msgstr "" + +#. TRANS: Server exception thrown when requesting a non-exsting notice for an RSVP ("please respond"). +#. TRANS: %s is the RSVP with the missing notice. +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "" + +#. TRANS: Exception thrown when requesting a non-existing profile. +#. TRANS: %s is the ID of the non-existing profile. +#, php-format +msgid "No profile with ID %s." +msgstr "" + +#. TRANS: Exception thrown when requesting a non-existing event. +#. TRANS: %s is the ID of the non-existing event. +#, php-format +msgid "No event with ID %s." +msgstr "" + +#. TRANS: HTML version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile URL, %2$s a profile name, +#. TRANS: %3$s is an event URL, %4$s an event title. +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" + +#. TRANS: HTML version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile URL, %2$s a profile name, +#. TRANS: %3$s is an event URL, %4$s an event title. +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" + +#. TRANS: HTML version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile URL, %2$s a profile name, +#. TRANS: %3$s is an event URL, %4$s an event title. +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" + +#. TRANS: Exception thrown when requesting a user's RSVP status for a non-existing response code. +#. TRANS: %s is the non-existing response code. +#, php-format +msgid "Unknown response code %s." +msgstr "" + +#. TRANS: Used as event title when not event title is available. +#. TRANS: Used as: Username [is [not ] attending|might attend] an unknown event. +msgid "an unknown event" +msgstr "" + +#. TRANS: Plain text version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile name, %2$s is an event title. +#, php-format +msgid "%1$s is attending %2$s." +msgstr "" + +#. TRANS: Plain text version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile name, %2$s is an event title. +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "" + +#. TRANS: Plain text version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile name, %2$s is an event title. +#, php-format +msgid "%1$s might attend %2$s." +msgstr "" + +#. TRANS: Title for new event form. +msgctxt "TITLE" +msgid "New event" +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event while not logged in. +msgid "Must be logged in to post a event." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing a title. +msgid "Title required." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing a start date. +msgid "Start date required." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing an end date. +msgid "End date required." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event with a date that cannot be processed. +#. TRANS: %s is the data that could not be processed. +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing a title. +msgid "Event must have a title." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing a start time. +msgid "Event must have a start time." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing an end time. +msgid "Event must have an end time." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event with an invalid URL. +msgid "URL must be valid." +msgstr "" + +#. TRANS: Field label for event description. +msgid "Time:" +msgstr "Hora:" + +#. TRANS: Field label for event description. +msgid "Location:" +msgstr "Lugar:" + +#. TRANS: Field label for event description. +msgid "Description:" +msgstr "Descrición:" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index 53ab193d29..8f94f00734 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -417,13 +418,3 @@ msgstr "Loco:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Description:" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Presente:" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Si: %1$d No: %2$d Forsan: %3$d" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index 2992d3040f..e41ab66cae 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -417,13 +418,3 @@ msgstr "Место:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Опис:" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Присуство:" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Да: %1$d Не: %2$d Можеби: %3$d" diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index b4d3819d0d..654ad09f64 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:38+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -417,13 +418,3 @@ msgstr "Lokasi:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Keterangan:" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Hadir:" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Ya: %1$d Tidak: %2$d Mungkin: %3$d" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index c6ad833efe..3bfc206e66 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -421,13 +422,3 @@ msgstr "Locatie:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Beschrijving:" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Aanwezig:" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Ja: %1$d Nee: %2$d Misschien: %3$d" diff --git a/plugins/Event/locale/pt/LC_MESSAGES/Event.po b/plugins/Event/locale/pt/LC_MESSAGES/Event.po index 5b3b571f08..3fb4d01194 100644 --- a/plugins/Event/locale/pt/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/pt/LC_MESSAGES/Event.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:38+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -407,13 +408,3 @@ msgstr "" #. TRANS: Field label for event description. msgid "Description:" msgstr "" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index 5da36bd4e3..7e02260555 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -420,13 +421,3 @@ msgstr "Kinalalagyan:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Paglalarawan:" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Dadalo:" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Oo: %1$d Hindi: %2$d Baka: %3$d" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index e13869661a..769ed76199 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-09-11 15:10:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -420,13 +421,3 @@ msgstr "Розташування:" #. TRANS: Field label for event description. msgid "Description:" msgstr "Опис:" - -#. TRANS: Field label for event description. -msgid "Attending:" -msgstr "Присутні:" - -#. TRANS: RSVP counts. -#. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#, php-format -msgid "Yes: %1$d No: %2$d Maybe: %3$d" -msgstr "Так: %1$d Ні: %2$d Можливо: %3$d" diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index e0a432834c..461984af79 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po index 3691a3b5d4..70071aba39 100644 --- a/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:42+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index f89c2bd273..02f5add769 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po index 08db29f8bd..99ff5d8b62 100644 --- a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:42+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" @@ -24,12 +25,14 @@ msgstr "" #. TRANS: Title for extended profile settings. msgid "Extended profile settings" -msgstr "" +msgstr "Paràmetres de perfil estès" #. TRANS: Usage instructions for profile settings. msgid "" "You can update your personal profile info here so people know more about you." msgstr "" +"Podeu actualitzar la vostra informació personal a continuació per tal que la " +"gent us conegui més." #. TRANS: Client error displayed when the session token does not match or is not given. msgid "There was a problem with your session token. Try again, please." @@ -59,17 +62,17 @@ msgstr "" #. TRANS: %s is the invalid URL. #, php-format msgid "Invalid URL: %s." -msgstr "" +msgstr "URL no vàlid: %s." #. TRANS: Server error displayed when a field could not be saved in the database. msgid "Could not save profile details." -msgstr "" +msgstr "No es poden desar els detalls de perfil." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. #, php-format msgid "Invalid tag: \"%s\"." -msgstr "" +msgstr "Etiqueta no vàlida: «%s»." #. TRANS: Server error thrown when user profile settings could not be saved. msgid "Could not save profile." @@ -89,24 +92,24 @@ msgstr "Edita" #. TRANS: Plugin description. msgid "UI extensions for additional profile fields." -msgstr "" +msgstr "Extensions d'interfície per a camps de perfil addicionals." #. TRANS: Link text on user profile page leading to extended profile page. msgid "More details..." -msgstr "" +msgstr "Més detalls..." #. TRANS: Title for extended profile entry deletion dialog. msgid "Confirmation Required" -msgstr "" +msgstr "Cal una confirmació" #. TRANS: Confirmation text for extended profile entry deletion dialog. msgid "Really delete this entry?" -msgstr "" +msgstr "Voleu eliminar aquesta entrada?" #. TRANS: Value between parentheses (phone number, website, or IM address). #, php-format msgid "(%s)" -msgstr "" +msgstr "(%s)" #. TRANS: Field label in experience area of extended profile. #. TRANS: Field label in experience edit area of extended profile (which company does one work for). @@ -123,7 +126,7 @@ msgstr "Acaba" #. TRANS: Field value in experience area of extended profile (one still holds a position). msgid "(Current)" -msgstr "" +msgstr "(Actual)" #. TRANS: Checkbox label in experience edit area of extended profile (one still works at a company). msgid "Current" @@ -146,7 +149,7 @@ msgstr "Descripció" #. TRANS: Link description in extended profile page to add another profile element. msgid "Add another item" -msgstr "" +msgstr "Afegeix un altre element" #. TRANS: Field label for undefined field in extended profile. #, php-format diff --git a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po index e08e9b9687..2822da1bc4 100644 --- a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:42+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po new file mode 100644 index 0000000000..5e365d2be4 --- /dev/null +++ b/plugins/ExtendedProfile/locale/eu/LC_MESSAGES/ExtendedProfile.po @@ -0,0 +1,234 @@ +# Translation of StatusNet - ExtendedProfile to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ExtendedProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:42+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-extendedprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for extended profile settings. +msgid "Extended profile settings" +msgstr "Hedaturiko profil aukerak" + +#. TRANS: Usage instructions for profile settings. +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Hemen eguneratu dezakezu zure profil pertsonalaren informazioa, jendeak zuri " +"buruz gehiago jakin dezan." + +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "Zure sesio tokenarekin arazo bat izan da. Saiatu berriro, mesedez." + +#. TRANS: Message given submitting a form with an unknown action. +msgid "Unexpected form submission." +msgstr "Ustekabeko inprimakiaren bidalketa." + +#. TRANS: Success message after saving extended profile details. +msgid "Details saved." +msgstr "Xehetasunak gorde dira" + +#. TRANS: Exception thrown when no date was entered in a required date field. +#. TRANS: %s is the field name. +#, php-format +msgid "You must supply a date for \"%s\"." +msgstr "\"%s\"(r)entzako data bat eman beharko zenuke." + +#. TRANS: Exception thrown on incorrect data input. +#. TRANS: %1$s is a field name, %2$s is the incorrect input. +#, php-format +msgid "Invalid date entered for \"%1$s\": %2$s." +msgstr "Okerreko data \"%1$s\"(r)entzako: %2$s." + +#. TRANS: Exception thrown when entering an invalid URL. +#. TRANS: %s is the invalid URL. +#, php-format +msgid "Invalid URL: %s." +msgstr "URL okerra: %s." + +#. TRANS: Server error displayed when a field could not be saved in the database. +msgid "Could not save profile details." +msgstr "Ezin izan dira profilaren xehetasunak gorde." + +#. TRANS: Validation error in form for profile settings. +#. TRANS: %s is an invalid tag. +#, php-format +msgid "Invalid tag: \"%s\"." +msgstr "Etiketa okerra: \"%s\"." + +#. TRANS: Server error thrown when user profile settings could not be saved. +msgid "Could not save profile." +msgstr "Ezin izan da profila gorde." + +#. TRANS: Server error thrown when user profile settings tags could not be saved. +msgid "Could not save tags." +msgstr "Ezin izan dira etiketak gorde." + +#. TRANS: Link title for link on user profile. +msgid "Edit extended profile settings" +msgstr "Editatu profil hedatuaren aukerak" + +#. TRANS: Link text for link on user profile. +msgid "Edit" +msgstr "Editatu" + +#. TRANS: Plugin description. +msgid "UI extensions for additional profile fields." +msgstr "UI luzapenak profilari eremu berriak gehitzeko." + +#. TRANS: Link text on user profile page leading to extended profile page. +msgid "More details..." +msgstr "Detaile gehiago..." + +#. TRANS: Title for extended profile entry deletion dialog. +msgid "Confirmation Required" +msgstr "Konfirmatzea Beharrezkoa" + +#. TRANS: Confirmation text for extended profile entry deletion dialog. +msgid "Really delete this entry?" +msgstr "Benetan ezabatu nahi duzu sarrera hau?" + +#. TRANS: Value between parentheses (phone number, website, or IM address). +#, php-format +msgid "(%s)" +msgstr "(%s)" + +#. TRANS: Field label in experience area of extended profile. +#. TRANS: Field label in experience edit area of extended profile (which company does one work for). +msgid "Company" +msgstr "Enpresa" + +#. TRANS: Field label in extended profile (when did one start a position or education). +msgid "Start" +msgstr "Hasi" + +#. TRANS: Field label in extended profile (when did one end a position or education). +msgid "End" +msgstr "Amaitu" + +#. TRANS: Field value in experience area of extended profile (one still holds a position). +msgid "(Current)" +msgstr "(Egungoa)" + +#. TRANS: Checkbox label in experience edit area of extended profile (one still works at a company). +msgid "Current" +msgstr "Egungoa" + +#. TRANS: Field label in education area of extended profile. +#. TRANS: Field label in education edit area of extended profile. +#. TRANS: Field label for extended profile properties. +msgid "Institution" +msgstr "Istituzioa" + +#. TRANS: Field label in extended profile for specifying an academic degree. +msgid "Degree" +msgstr "Maila" + +#. TRANS: Field label in education area of extended profile. +#. TRANS: Field label in education edit area of extended profile. +msgid "Description" +msgstr "Deskribapena" + +#. TRANS: Link description in extended profile page to add another profile element. +msgid "Add another item" +msgstr "Gehitu eremu berria" + +#. TRANS: Field label for undefined field in extended profile. +#, php-format +msgid "TYPE: %s" +msgstr "MOTA: %s" + +#. TRANS: Button text for saving extended profile properties. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gorde" + +#. TRANS: . +#. TRANS: Button title for saving extended profile properties. +msgid "Save details" +msgstr "Xehetasunak gorde" + +#. TRANS: Field label for extended profile properties. +msgid "Phone" +msgstr "Telefonoa" + +#. TRANS: Field label for extended profile properties (Instant Messaging). +msgid "IM" +msgstr "BM" + +#. TRANS: Field label for extended profile properties. +msgid "Website" +msgstr "Webgunea" + +#. TRANS: Field label for extended profile properties. +msgid "Employer" +msgstr "Enplegatzailea" + +#. TRANS: Field label for extended profile properties. +msgid "Personal" +msgstr "Pertsonala" + +#. TRANS: Field label for extended profile properties. +msgid "Full name" +msgstr "Izen osoa" + +#. TRANS: Field label for extended profile properties. +msgid "Title" +msgstr "Titulua" + +#. TRANS: Field label for extended profile properties. +msgid "Manager" +msgstr "Kudeatzailea" + +#. TRANS: Field label for extended profile properties. +msgid "Location" +msgstr "Kokapena" + +#. TRANS: Field label for extended profile properties. +msgid "Bio" +msgstr "Biografia" + +#. TRANS: Field label for extended profile properties. +msgid "Tags" +msgstr "Etiketak" + +#. TRANS: Field label for extended profile properties. +msgid "Contact" +msgstr "Kontaktua" + +#. TRANS: Field label for extended profile properties. +msgid "Birthday" +msgstr "Jaioteguna" + +#. TRANS: Field label for extended profile properties. +msgid "Spouse's name" +msgstr "Ezkontidearen izena" + +#. TRANS: Field label for extended profile properties. +msgid "Kids' names" +msgstr "Haurren izenak" + +#. TRANS: Field label for extended profile properties. +msgid "Work experience" +msgstr "Lan esperientzia" + +#. TRANS: Field label for extended profile properties. +msgid "Education" +msgstr "Ikasketak" diff --git a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po index 7da86712f3..9fbee7f18b 100644 --- a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\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 85e917820a..290c103435 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" diff --git a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po index 8ce396ce4f..be8d2e71d0 100644 --- a/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ja/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:43+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\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 1e56508f02..267b7205c1 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ddf88bd618..c9efdfd4d1 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6f7c58c7d0..aaa55e08c0 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f067a43ece..efa859ae27 100644 --- a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:43+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ca8b749823..259bfc3321 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e371607303..7df4c6cef2 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c399bbb40d..2995e79225 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,12 +28,12 @@ msgstr "" #. TRANS: Page title. #. TRANS: Alt text for "Login with Facebook" image. -#: actions/facebooklogin.php:67 actions/facebooklogin.php:93 +#: actions/facebooklogin.php:67 actions/facebooklogin.php:92 msgid "Login with Facebook" msgstr "" #. TRANS: Title for "Login with Facebook" image. -#: actions/facebooklogin.php:95 +#: actions/facebooklogin.php:94 msgid "Login with Facebook." msgstr "" @@ -96,7 +96,7 @@ msgid "Save Facebook settings." msgstr "" #. TRANS: Client error displayed when the session token does not match or is not given. -#: actions/facebooksettings.php:87 actions/facebookfinishlogin.php:143 +#: actions/facebooksettings.php:87 actions/facebookfinishlogin.php:152 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -174,31 +174,35 @@ msgstr "" msgid "You have disconnected from Facebook." msgstr "" +#: actions/facebookfinishlogin.php:50 +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. -#: actions/facebookfinishlogin.php:87 +#: actions/facebookfinishlogin.php:79 msgid "" "You must be logged into Facebook to register a local account using Facebook." msgstr "" #. TRANS: Client error displayed when trying to connect to a Facebook account that is already linked #. TRANS: in the same StatusNet site. -#: actions/facebookfinishlogin.php:119 +#: actions/facebookfinishlogin.php:121 actions/facebookfinishlogin.php:137 msgid "There is already a local account linked with that Facebook account." msgstr "" #. TRANS: Form validation error displayed when user has not agreed to the license. -#: actions/facebookfinishlogin.php:153 +#: actions/facebookfinishlogin.php:162 msgid "You cannot register if you do not agree to the license." msgstr "" #. TRANS: Form validation error displayed when an unhandled error occurs. -#: actions/facebookfinishlogin.php:171 +#: actions/facebookfinishlogin.php:180 msgid "An unknown error has occured." msgstr "" #. TRANS: Form instructions for connecting to Facebook. #. TRANS: %s is the site name. -#: actions/facebookfinishlogin.php:190 +#: actions/facebookfinishlogin.php:199 #, php-format msgid "" "This is the first time you have logged into %s so we must connect your " @@ -207,17 +211,17 @@ msgid "" msgstr "" #. TRANS: Page title. -#: actions/facebookfinishlogin.php:200 +#: actions/facebookfinishlogin.php:209 msgid "Facebook Setup" msgstr "" #. TRANS: Fieldset legend. -#: actions/facebookfinishlogin.php:234 +#: actions/facebookfinishlogin.php:243 msgid "Connection options" msgstr "" #. TRANS: %s is the name of the license used by the user for their status updates. -#: actions/facebookfinishlogin.php:244 +#: actions/facebookfinishlogin.php:253 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -225,115 +229,115 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#: actions/facebookfinishlogin.php:261 +#: actions/facebookfinishlogin.php:270 msgid "Create new account" msgstr "" #. TRANS: Form instructions. -#: actions/facebookfinishlogin.php:264 +#: actions/facebookfinishlogin.php:273 msgid "Create a new user with this nickname." msgstr "" #. TRANS: Field label. -#: actions/facebookfinishlogin.php:272 +#: actions/facebookfinishlogin.php:281 msgid "New nickname" msgstr "" #. TRANS: Field title. -#: actions/facebookfinishlogin.php:275 +#: actions/facebookfinishlogin.php:284 msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" #. TRANS: Submit button to create a new account. -#: actions/facebookfinishlogin.php:283 +#: actions/facebookfinishlogin.php:292 msgctxt "BUTTON" msgid "Create" msgstr "" #. TRANS: Fieldset legend. -#: actions/facebookfinishlogin.php:289 +#: actions/facebookfinishlogin.php:298 msgid "Connect existing account" msgstr "" #. TRANS: Form instructions. -#: actions/facebookfinishlogin.php:292 +#: actions/facebookfinishlogin.php:301 msgid "" "If you already have an account, login with your username and password to " "connect it to your Facebook." msgstr "" #. TRANS: Field label. -#: actions/facebookfinishlogin.php:296 +#: actions/facebookfinishlogin.php:305 msgid "Existing nickname" msgstr "" #. TRANS: Field label. -#: actions/facebookfinishlogin.php:300 +#: actions/facebookfinishlogin.php:309 msgid "Password" msgstr "" #. TRANS: Submit button to connect a Facebook account to an existing StatusNet account. -#: actions/facebookfinishlogin.php:304 +#: actions/facebookfinishlogin.php:313 msgctxt "BUTTON" msgid "Connect" msgstr "" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: actions/facebookfinishlogin.php:325 actions/facebookfinishlogin.php:335 +#: actions/facebookfinishlogin.php:334 actions/facebookfinishlogin.php:344 msgid "Registration not allowed." msgstr "" #. TRANS: Client error trying to register with an invalid invitation code. -#: actions/facebookfinishlogin.php:343 +#: actions/facebookfinishlogin.php:352 msgid "Not a valid invitation code." msgstr "" #. TRANS: Form validation error displayed when picking a nickname that is not allowed. -#: actions/facebookfinishlogin.php:357 +#: actions/facebookfinishlogin.php:366 msgid "Nickname not allowed." msgstr "" #. TRANS: Form validation error displayed when picking a nickname that is already in use. -#: actions/facebookfinishlogin.php:363 +#: actions/facebookfinishlogin.php:372 msgid "Nickname already in use. Try another one." msgstr "" #. TRANS: Server error displayed when connecting to Facebook fails. -#: actions/facebookfinishlogin.php:392 actions/facebookfinishlogin.php:533 +#: actions/facebookfinishlogin.php:401 actions/facebookfinishlogin.php:535 msgid "Error connecting user to Facebook." msgstr "" #. TRANS: Form validation error displayed when username/password combination is incorrect. -#: actions/facebookfinishlogin.php:495 +#: actions/facebookfinishlogin.php:502 msgid "Invalid username or password." msgstr "" #. TRANS: Menu item for "Facebook" in administration panel. #. TRANS: Menu item for "Facebook" in user settings. -#: FacebookBridgePlugin.php:217 FacebookBridgePlugin.php:256 -#: FacebookBridgePlugin.php:296 +#: FacebookBridgePlugin.php:216 FacebookBridgePlugin.php:255 +#: FacebookBridgePlugin.php:295 msgctxt "MENU" msgid "Facebook" msgstr "" #. TRANS: Menu title for "Facebook" login. -#: FacebookBridgePlugin.php:219 +#: FacebookBridgePlugin.php:218 msgid "Login or register using Facebook." msgstr "" #. TRANS: Menu title for "Facebook" in administration panel. -#: FacebookBridgePlugin.php:258 +#: FacebookBridgePlugin.php:257 msgid "Facebook integration configuration." msgstr "" #. TRANS: Menu title for "Facebook" in user settings. -#: FacebookBridgePlugin.php:298 +#: FacebookBridgePlugin.php:297 msgid "Facebook settings." msgstr "" #. TRANS: Plugin description. -#: FacebookBridgePlugin.php:559 +#: FacebookBridgePlugin.php:576 msgid "A plugin for integrating StatusNet with Facebook." msgstr "" diff --git a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index 4ea3ff77e6..753d5e880f 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:49+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:47+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -155,6 +156,9 @@ msgstr "تعذر حذف ارتباط فيسبك." msgid "You have disconnected from Facebook." msgstr "لقد قطعت الربط بفيسبك." +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 0fa8713ee8..6c1c87ebd6 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:49+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -153,6 +154,9 @@ msgstr "N'eus ket bet gallet diverkañ al liamm war-du Facebook." msgid "You have disconnected from Facebook." msgstr "Digevreet ho peus deus Facebook." +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 4cf0a029f4..47fa3dc6cf 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:49+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -157,6 +158,9 @@ msgstr "No s'ha pogut eliminar l'enllaç al Facebook." msgid "You have disconnected from Facebook." msgstr "Us heu desconnectat del Facebook." +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index 46f6836ecf..9eb5ac32d5 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -6,6 +6,7 @@ # Author: Giftpflanze # Author: Kghbln # Author: MF-Warburg +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -13,13 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -160,6 +162,9 @@ msgstr "Konnte die Verbindung zu Facebook nicht löschen." msgid "You have disconnected from Facebook." msgstr "Du bist nun nicht mehr mit Facebook verbunden." +msgid "Unable to authenticate you with Facebook." +msgstr "Konnte dich nicht mit Facebook authentifizieren." + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po index c2cfcd308d..c658c333b5 100644 --- a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po @@ -13,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -164,6 +165,9 @@ msgstr "Impossible de supprimer le lien vers Facebook." msgid "You have disconnected from Facebook." msgstr "Vous avez été déconnecté de Facebook." +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po index 3587927525..cec5dfc417 100644 --- a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -150,6 +151,9 @@ msgstr "" msgid "You have disconnected from Facebook." msgstr "" +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index 71fb652ba2..0138206f95 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -156,6 +157,9 @@ msgstr "Non poteva deler le ligamine a Facebook." msgid "You have disconnected from Facebook." msgstr "Tu te ha disconnectite de Facebook." +msgid "Unable to authenticate you with Facebook." +msgstr "Impossibile authenticar te con Facebook." + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po index 553f70c212..4d946975da 100644 --- a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" "Language-Team: Malagasy \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mg\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -158,6 +159,9 @@ msgstr "Tsy afaka mamafa ilay rohy mankany amin'i Facebook." msgid "You have disconnected from Facebook." msgstr "Efa nivoaka tamin'i Facebook ianao" +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index ef514c4ad7..d0ade44de5 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -154,6 +155,9 @@ msgstr "Не можев да ја избришам врската до Facebook. msgid "You have disconnected from Facebook." msgstr "Сега сте исклучени од Facebook." +msgid "Unable to authenticate you with Facebook." +msgstr "Не можам да Ве потврдам со Facebook." + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index 86a31453e8..44aa49a8f7 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:50+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -158,6 +159,9 @@ msgstr "Het was niet mogelijk de verwijzing naar Facebook te verwijderen." msgid "You have disconnected from Facebook." msgstr "U bent losgekoppeld van Facebook." +msgid "Unable to authenticate you with Facebook." +msgstr "Het was niet mogelijk u via Facebook aan te melden." + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po index f1dd302e49..9eb99a02c1 100644 --- a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -159,6 +160,9 @@ msgstr "Hindi mabura ang kawing sa Facebook." msgid "You have disconnected from Facebook." msgstr "Kumalas ka na mula sa Facebook." +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index e8569b217c..ca69a57cfc 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -156,6 +157,9 @@ msgstr "Не можу видалити посилання на Facebook." msgid "You have disconnected from Facebook." msgstr "Ви від’єдналися від Facebook." +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index 193a417c93..cdd8dd281b 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" @@ -160,6 +161,9 @@ msgstr "将我的通知发布到 Facebook。" msgid "You have disconnected from Facebook." msgstr "" +msgid "Unable to authenticate you with Facebook." +msgstr "" + #. TRANS: Client error displayed when trying to connect to Facebook while not logged in. msgid "" "You must be logged into Facebook to register a local account using Facebook." diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 9060768aff..50f597b53c 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ca/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po index 5561ba94a1..34fea4c5a7 100644 --- a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index 612e9f337b..8a073849f5 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 df81ca8cf7..53141d5686 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c25c02106d..edaa9c716a 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e99e70d3f3..7bb8ae5531 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" diff --git a/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po new file mode 100644 index 0000000000..6673456074 --- /dev/null +++ b/plugins/FirePHP/locale/gl/LC_MESSAGES/FirePHP.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - FirePHP to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FirePHP\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:49+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-firephp\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "The FirePHP plugin writes StatusNet's log output to FirePHP." +msgstr "" +"O complemento FirePHP escribe a saída do rexistro de StatusNet en FirePHP." diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index 78526684db..d7ade9c5c8 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 61db201ce1..ce904ad1f3 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3296f745d2..d2e19d384d 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 78e963058e..d5ce29b2ff 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0f98a72c5d..e070d7a775 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6f73ed8625..2d03ac4848 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b34e16978e..9f91095b77 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1b8ba1fc11..9ed29f4b6f 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 070f314804..fe3c86e5ea 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:50+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d90a359377..865e52c821 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e1bf645d81..0f2543acc0 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8e36c23304..b9cfe6f194 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e59f78cabe..0bc2989693 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/br/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po index 27a5867692..723db99ea7 100644 --- a/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/br/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po new file mode 100644 index 0000000000..ccd8dc99b2 --- /dev/null +++ b/plugins/FollowEveryone/locale/ca/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - FollowEveryone to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FollowEveryone\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-followeveryone\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "Segueix a tothom" + +#. TRANS: Plugin description. +msgid "New users follow everyone at registration and are followed in return." +msgstr "" +"Els usuaris nous segueixen a tothom en registrar-se i són seguits en retorn." diff --git a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po index 520eda03d6..3d01ac3dc8 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po new file mode 100644 index 0000000000..a79ac0487f --- /dev/null +++ b/plugins/FollowEveryone/locale/eu/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - FollowEveryone to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FollowEveryone\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-followeveryone\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "Jarraitu guztiak" + +#. TRANS: Plugin description. +msgid "New users follow everyone at registration and are followed in return." +msgstr "" +"Erabiltzaile berriak izen ematean erabiltzaile zahar guztien jarraitzale eta " +"alderantziz egiteko." diff --git a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po index 5e7c551540..83625f91af 100644 --- a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\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 30f3b0639b..d50cf989b3 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" diff --git a/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po new file mode 100644 index 0000000000..58d7809882 --- /dev/null +++ b/plugins/FollowEveryone/locale/gl/LC_MESSAGES/FollowEveryone.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - FollowEveryone to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - FollowEveryone\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:51+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-followeveryone\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Checkbox label in form for profile settings. +msgid "Follow everyone" +msgstr "Seguir a todos" + +#. TRANS: Plugin description. +msgid "New users follow everyone at registration and are followed in return." +msgstr "" +"Os novos usuarios siguen a todos durante o rexistro e, a cambio, son " +"seguidos." diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index 5f51f3935a..b644b313fc 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4e16f7e6da..a61157d947 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 32073157c0..923b7ab845 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d15c2896ef..3c0bccd069 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1345ad6f68..22189236b5 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c34124f984..1f20260d5b 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b7b27aca89..f2c1e5382c 100644 --- a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b4d6e0db0a..532f019c05 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e5aa8d220e..92ac2935b9 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 ea35e9e220..cb9c274b84 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..7f7f81b644 --- /dev/null +++ b/plugins/ForceGroup/locale/ca/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - ForceGroup to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "No s'ha pogut unir l'usuari %1$s al grup %2$s." + +#. TRANS: Plugin description. +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index 510277899d..d0c13f3f42 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4ccbe11344..50fe7fd641 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:52+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e1e2c990c4..fa4c294c94 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" diff --git a/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po new file mode 100644 index 0000000000..92d2d89a54 --- /dev/null +++ b/plugins/ForceGroup/locale/gl/LC_MESSAGES/ForceGroup.po @@ -0,0 +1,37 @@ +# Translation of StatusNet - ForceGroup to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ForceGroup\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:53+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-forcegroup\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "O usuario %1$s non se puido engadir ao grupo %2$s." + +#. TRANS: Plugin description. +msgid "" +"Allows forced group memberships and forces all notices to appear in groups " +"that users were forced in." +msgstr "" +"Permite forzar a inscripción nun grupo e forza a que todas as notas aparezan " +"nos grupos onde os usuarios se ven forzados a estar." diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index f94b74dce8..9b9044bac5 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b0fd3f6621..7202b7f140 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8fec5174c5..900983d6e3 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 29ef1d2c6b..b1420676c8 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1162e12252..0850e4dd4b 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d84c3be191..62fdf709fd 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bdc0b90d5e..c4978554bd 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1119b89f11..709bd34966 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 58e1807f43..d63e9d1ee5 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9ba9ba397b..9ee56ac11a 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 2406a54c07..dbc4a57faa 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d35e5f70f6..db54d2c0fa 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7a6af4e47e..2924bd6cda 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 41f17cc789..01e62647ff 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..daa754d5d6 --- /dev/null +++ b/plugins/GeoURL/locale/eu/LC_MESSAGES/GeoURL.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - GeoURL to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Egin ping GeoURLri hobetutako " +"geolokalizazio ohar berriak argitaratzen diren aldiko." diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index f4dff8515f..8b7a8848bb 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6ce45d8640..112a266dbe 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" diff --git a/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po new file mode 100644 index 0000000000..23f3f9cbaa --- /dev/null +++ b/plugins/GeoURL/locale/gl/LC_MESSAGES/GeoURL.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - GeoURL to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GeoURL\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:55+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-geourl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Ping GeoURL when new geolocation-enhanced " +"notices are posted." +msgstr "" +"Ping GeoURL ao publicar novas notas de " +"xeolocalización mellorada." diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index d8d51aeecd..3040aba7cd 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 19b55841ab..7b67870c46 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1cea13283b..c0bdf827af 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b02c8dd842..ca2f490b40 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d59aad73cd..3fab294717 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8fcaa97602..0bfcf09029 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0a99012cfb..9c93853c8f 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:56+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cb133ef696..a816bdce6f 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b6e7470328..60707b7598 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a934584687..a1cd9f8871 100644 --- a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e25a875031..7cf4fc30c8 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d7595805fd..02809a92db 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c6d03a283e..6c1c13d17d 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ca/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po index a072e50e36..2912a9b089 100644 --- a/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ca/LC_MESSAGES/Geonames.po @@ -9,37 +9,38 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-09 18:34+0000\n" -"PO-Revision-Date: 2011-04-09 18:37:13+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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:03+0000\n" -"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Exception thrown when a geo names service is not used because of a recent timeout. msgid "Skipping due to recent web service timeout." -msgstr "" +msgstr "S'ignora pel recent temps d'espera esgotat del web." #. TRANS: Exception thrown when a geo names service does not return an expected response. #. TRANS: %s is an HTTP error code. #, php-format msgid "HTTP error code %s." -msgstr "" +msgstr "Codi d'error HTTP %s." #. TRANS: Exception thrown when a geo names service returns an empty body. msgid "Empty HTTP body in response." -msgstr "" +msgstr "Cos HTTP buit a la resposta." #. TRANS: Exception thrown when a geo names service return a specific error number and error text. #. TRANS: %1$s is an error code, %2$s is an error message. #, php-format msgid "Error #%1$s (\"%2$s\")." -msgstr "" +msgstr "Error #%1$s (\"%2$s\")." #. TRANS: Plugin description. msgid "" diff --git a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index 81c89881f3..75acab9f95 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po new file mode 100644 index 0000000000..f6d223d12e --- /dev/null +++ b/plugins/Geonames/locale/eu/LC_MESSAGES/Geonames.po @@ -0,0 +1,53 @@ +# Translation of StatusNet - Geonames to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Geonames\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:54+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-geonames\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when a geo names service is not used because of a recent timeout. +msgid "Skipping due to recent web service timeout." +msgstr "" + +#. TRANS: Exception thrown when a geo names service does not return an expected response. +#. TRANS: %s is an HTTP error code. +#, php-format +msgid "HTTP error code %s." +msgstr "%s HTTP akats kodea." + +#. TRANS: Exception thrown when a geo names service returns an empty body. +msgid "Empty HTTP body in response." +msgstr "HTTP body hutsa erantzunean." + +#. TRANS: Exception thrown when a geo names service return a specific error number and error text. +#. TRANS: %1$s is an error code, %2$s is an error message. +#, php-format +msgid "Error #%1$s (\"%2$s\")." +msgstr "Akatsa #%1$s (\"%2$s\")." + +#. TRANS: Plugin description. +msgid "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs." +msgstr "" +"Uses Geonames service to get human-" +"readable names for locations based on user-provided lat/long pairs.\n" +"Geonames zerbitzua erabiltzen du " +"latitude eta longitude bidez kokapenaren toponimoa lortzeko." diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index 6b4589cb02..0b0321d888 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index bcae7313b9..6c83048192 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index 271ed0c5a1..dbf756c11a 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b8f0affdba..c384114b50 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d2eefc9d66..e613ac3692 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7dd66530e5..f11bd7f4ad 100644 --- a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fc05d4e079..8aa6965e97 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b4dff3c90f..e13ed04eb0 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 282c5c1a0f..d4a6b1d24a 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 8985a6de60..e02f55ebe9 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..83ceb041c1 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/ca/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - GoogleAnalytics to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Utilitzeu el Google Analytics per tracejar l'accés al web." diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index 4c0833ba6f..4f32b659c4 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ed1d28d888..2cd41dab78 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d421dd2bce..e2ddca0842 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9ba264d291..d4543f960d 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po new file mode 100644 index 0000000000..ec65370ad6 --- /dev/null +++ b/plugins/GoogleAnalytics/locale/gl/LC_MESSAGES/GoogleAnalytics.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - GoogleAnalytics to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GoogleAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-googleanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Use Google Analytics to " +"track web access." +msgstr "" +"Usar o Google Analytics " +"para seguir o acceso á web." diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index 6b9e9d59d5..12bde24df2 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 38623d6349..4533315330 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1990b53083..d977a52665 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:57+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6623d38138..d78b0588f2 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cc11a3050b..9675cf97a6 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 38cbc91153..f7861f98b2 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7de658a3f8..4a129fd8b6 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a08853bd77..7326a9c974 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a158bc3111..6aa3993e20 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" diff --git a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po index c61a6e5e54..da7e8a2233 100644 --- a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 f44145a2d1..1bd9b55e7a 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 20025550d7..9158a316ae 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 68d62e62dc..29991ead6f 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:58+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 850d7f907a..f8943b9c98 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 a5988b718e..b8ad04bc6f 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index 62041a9c68..ebdd6a051f 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index ef170fa6d3..afcfec9bac 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..343bcdb843 --- /dev/null +++ b/plugins/Gravatar/locale/eu/LC_MESSAGES/Gravatar.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Gravatar to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin decsription. +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Gravatar pluginak erabiltzaileei heuren Gravatarra StatusNet-en erabiltzen uzten die." diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index a15b520aad..1033f1768f 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po index 534e5eb6bf..af3a7bc2d6 100644 --- a/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/gl/LC_MESSAGES/Gravatar.po @@ -1,5 +1,5 @@ # Translation of StatusNet - Gravatar to Galician (Galego) -# Expored from translatewiki.net +# Exported from translatewiki.net # # Author: Toliño # -- @@ -9,64 +9,23 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-15 00:20+0000\n" -"PO-Revision-Date: 2011-01-15 00:23:48+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:02+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: GravatarPlugin.php:60 -msgid "Set Gravatar" -msgstr "" - -#: GravatarPlugin.php:63 -msgid "If you want to use your Gravatar image, click \"Add\"." -msgstr "" - -#: GravatarPlugin.php:68 -msgid "Add" -msgstr "Engadir" - -#: GravatarPlugin.php:78 -msgid "Remove Gravatar" -msgstr "" - -#: GravatarPlugin.php:81 -msgid "If you want to remove your Gravatar image, click \"Remove\"." -msgstr "" - -#: GravatarPlugin.php:86 -msgid "Remove" -msgstr "Eliminar" - -#: GravatarPlugin.php:91 -msgid "To use a Gravatar first enter in an email address." -msgstr "" - -#: GravatarPlugin.php:140 -msgid "You do not have an email address set in your profile." -msgstr "" - -#: GravatarPlugin.php:158 -msgid "Failed to save Gravatar to the database." -msgstr "" - -#: GravatarPlugin.php:162 -msgid "Gravatar added." -msgstr "" - -#: GravatarPlugin.php:180 -msgid "Gravatar removed." -msgstr "" - -#: GravatarPlugin.php:200 +#. TRANS: Plugin decsription. msgid "" "The Gravatar plugin allows users to use their Gravatar with StatusNet." msgstr "" +"O complemento Gravatar permite aos usuarios usar o seu Gravatar co StatusNet." diff --git a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po index 919e335ef6..f661c7958f 100644 --- a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index e11a054269..819808a44a 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index e624ee900f..ca00d72bdb 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index 9c7e147ef9..363a20955a 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 61c9aa400d..04cc80b303 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index 416ee1192c..ee821d8fd6 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po new file mode 100644 index 0000000000..0d864b6414 --- /dev/null +++ b/plugins/Gravatar/locale/sv/LC_MESSAGES/Gravatar.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Gravatar to Swedish (Svenska) +# Exported from translatewiki.net +# +# Author: WikiPhoenix +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Gravatar\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" +"Language-Team: Swedish \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: sv\n" +"X-Message-Group: #out-statusnet-plugin-gravatar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin decsription. +msgid "" +"The Gravatar plugin allows users to use their Gravatar with StatusNet." +msgstr "" +"Gravatar-tillägget låter användare använda deras Gravatar med StatusNet." diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 59a6d87be8..1ca5b442bb 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index 905007785e..ae347eec22 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index 69b43ba3b1..f54ad1c881 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:43:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:04:59+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index 292f9ccb48..b4a22a1525 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po index e53345ecdc..3d0c8c58a2 100644 --- a/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index f683f5da0c..dcd5d9b1be 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6a5500a324..06720ad229 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 42698b61b4..bf7a589204 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 91b6465d2a..def2a5fcfd 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:00+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" diff --git a/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..46612e4205 --- /dev/null +++ b/plugins/GroupFavorited/locale/eu/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,49 @@ +# Translation of StatusNet - GroupFavorited to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item in the group navigation page. +msgctxt "MENU" +msgid "Popular" +msgstr "Arrakastatsua" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Ohar arrakastatsuak %s taldean" + +#. TRANS: Plugin description. +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "Plugin honek taldeetako ohar arrakastatsuentzako menu bat gehitzen du." + +#. TRANS: %s is a group name. +#, php-format +msgid "Popular posts in %s group" +msgstr "Sarrera arrakastatsuak %s taldean" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "Sarrera arrakastatsuak %1$s taldean, %2$d. orria" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index 7c6e46cfc7..7386f4a41b 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c0103fe86f..8f719f69da 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 08dfb2275a..4fb94228dd 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7e43ddd54f..d5b5fff25a 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7487b0f45f..893d7e84cf 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f332049da4..0ce1312275 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5e8a7570ac..392fab5e1b 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 444eed86f8..315356656d 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:01+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b82c8d1ef7..45a1d178b1 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po index 958838de39..5b7fb96cb8 100644 --- a/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:05+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" @@ -38,7 +39,7 @@ msgstr "لا يسمح للمستخدم %s بإرسال رسائل خاصة." #. TRANS: Client exception thrown when trying to send a private group message to a non-existing group. #. TRANS: Client exception thrown when trying to view group inbox for non-existing group. msgid "No such group." -msgstr "لا مجموعة كهذه." +msgstr "لا توجد مجموعة بهذا الاسم." #. TRANS: Title after sending a private group message. msgid "Message sent" @@ -47,7 +48,7 @@ msgstr "أُرسلت الرسالة" #. TRANS: Succes text after sending a direct message to group %s. #, php-format msgid "Direct message to %s sent." -msgstr "تم إرسال رسالة مباشرة إلى %s." +msgstr "أُرسلت رسالة مباشرة إلى %s." #. TRANS: Title of form for new private group message. #, php-format @@ -123,7 +124,7 @@ msgstr "مطلقا" #. TRANS: Dropdown title in group settings page for if group allows private messages. msgid "Whether to allow private messages to this group." -msgstr "السماح بالرسائل الخاصة لهذه المجموعة." +msgstr "هل تود السماح بالرسائل الخاصة لهذه المجموعة؟" #. TRANS: Dropdown label in group settings page for who can send private messages to the group. msgid "Private senders" @@ -164,7 +165,7 @@ msgstr "خاصة" #. TRANS: Plugin description. msgid "Allow posting private messages to groups." -msgstr "السماح بإرسال رسائل خاصة للمجموعات." +msgstr "هل تود السماح بإرسال رسائل خاصة للمجموعات؟" #. TRANS: Client exception thrown when trying to view group inbox while not logged in. msgid "Only for logged-in users." diff --git a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po index c19afc04bc..c1b28d9edc 100644 --- a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:05+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" @@ -23,14 +24,14 @@ msgstr "" #. TRANS: Client exception thrown when trying to send a private group message while not logged in. msgid "Must be logged in." -msgstr "" +msgstr "Cal que hàgiu iniciat una sessió." #. TRANS: Exception thrown when user %s is not allowed to send a private group message. #. TRANS: Exception thrown when trying to send group private message without having the right to do that. #. TRANS: %s is a user nickname. #, php-format msgid "User %s is not allowed to send private messages." -msgstr "" +msgstr "L'usuari %s no té permisos per enviar missatges privats." #. TRANS: Client exception thrown when trying to send a private group message to a non-existing group. #. TRANS: Client exception thrown when trying to view group inbox for non-existing group. @@ -44,7 +45,7 @@ msgstr "S'ha enviat el missatge" #. TRANS: Succes text after sending a direct message to group %s. #, php-format msgid "Direct message to %s sent." -msgstr "" +msgstr "S'ha enviat el missatge directe a %s." #. TRANS: Title of form for new private group message. #, php-format @@ -78,6 +79,19 @@ msgid "" "With kind regards,\n" "%6$s" msgstr "" +"%1$s (%2$s) ha enviat un missatge privat al grup %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"Podeu respondre al missatge des d'aquí:\n" +"%5$s\n" +"\n" +"No respongueu aquest missatge; no el rebran.\n" +"\n" +"Atentament,\n" +"%6$s" #. TRANS: Menu item in group page. msgctxt "MENU" @@ -110,7 +124,7 @@ msgstr "Si permetre missatges privat al grup." #. TRANS: Dropdown label in group settings page for who can send private messages to the group. msgid "Private senders" -msgstr "" +msgstr "Remitents privats" #. TRANS: Dropdown option in group settings page for who can send private messages. msgid "Everyone" @@ -122,20 +136,20 @@ msgstr "Membre" #. TRANS: Dropdown option in group settings page for who can send private messages. msgid "Admin" -msgstr "" +msgstr "Administrador" #. TRANS: Dropdown title in group settings page for who can send private messages to the group. msgid "Who can send private messages to the group." -msgstr "" +msgstr "Qui pot enviar missatges al grup." #. TRANS: Title for action in group actions list. msgid "Send a direct message to this group." -msgstr "" +msgstr "Envia un missatge directe al grup." #. TRANS: Link text for action in group actions list to send a private message to a group. msgctxt "LINKTEXT" msgid "Message" -msgstr "" +msgstr "Missatge" #. TRANS: Client exception thrown when a private group message has to be forced. msgid "Forced notice to private group message." @@ -143,11 +157,11 @@ msgstr "" #. TRANS: Indicator on the group page that the group is (essentially) private. msgid "Private" -msgstr "" +msgstr "Privat" #. TRANS: Plugin description. msgid "Allow posting private messages to groups." -msgstr "" +msgstr "Permet publicar missatges privats als grups." #. TRANS: Client exception thrown when trying to view group inbox while not logged in. msgid "Only for logged-in users." @@ -159,24 +173,26 @@ msgstr "Només per a membres." #. TRANS: Text of group inbox if no private messages were sent to it. msgid "This group has not received any private messages." -msgstr "" +msgstr "Aquest grup no ha rebut cap missatge privat." #. TRANS: Title of inbox for group %s. #, php-format msgid "%s group inbox" -msgstr "" +msgstr "Safata d'entrada del grup %s" #. TRANS: Page title for any but first group page. #. TRANS: %1$s is a group name, $2$s is a page number. #, php-format msgid "%1$s group inbox, page %2$d" -msgstr "" +msgstr "Safata d'entrada del grup %1$s, pàgina %2$d" #. TRANS: Instructions for user inbox page. msgid "" "This is the group inbox, which lists all incoming private messages for this " "group." msgstr "" +"Aquesta és la safata d'entrada del grup, que llista tots els missatges " +"privats entrants que arriben al grup." #. TRANS: Form legend for sending private message to group %s. #, php-format @@ -195,44 +211,44 @@ msgstr "Caràcters disponibles" #. TRANS: Send button text for sending private group notice. msgctxt "Send button for sending notice" msgid "Send" -msgstr "" +msgstr "Envia" #. TRANS: Exception thrown when trying to set group privacy setting if group %s does not allow private messages. #, php-format msgid "Group %s does not allow private messages." -msgstr "" +msgstr "El grup %s no permet missatges privats." #. TRANS: Exception thrown when trying to send group private message while blocked from that group. #. TRANS: %1$s is a user nickname, %2$s is a group nickname. #, php-format msgid "User %1$s is blocked from group %2$s." -msgstr "" +msgstr "L'usuari %1$s està blocat del grup %2$s." #. TRANS: Exception thrown when trying to send group private message while not a member. #. TRANS: %1$s is a user nickname, %2$s is a group nickname. #, php-format msgid "User %1$s is not a member of group %2$s." -msgstr "" +msgstr "L'usuari %1$s no és un membre del grup %2$s." #. TRANS: Exception thrown when trying to send group private message while not a group administrator. #. TRANS: %1$s is a user nickname, %2$s is a group nickname. #, php-format msgid "User %1$s is not an administrator of group %2$s." -msgstr "" +msgstr "L'usuari %1$s no és un administrador del grup %2$s." #. TRANS: Exception thrown when encountering undefined group privacy settings. #. TRANS: %s is a group nickname. #, php-format msgid "Unknown privacy settings for group %s." -msgstr "" +msgstr "Paràmetres de privadesa incorrectes del grup %s." #. TRANS: Exception thrown when trying to send group private message that is too long. #. TRANS: %d is the maximum meggage length. #, php-format msgid "That's too long. Maximum message size is %d character." msgid_plural "That's too long. Maximum message size is %d characters." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "És massa llarg. La mida màxima del missatge és %d caràcter." +msgstr[1] "És massa llarg. La mida màxima del missatge és %d caràcters." #. TRANS: Exception thrown when trying to send group private message to a non-existing group. msgid "No group for group message." @@ -271,4 +287,4 @@ msgstr "" #. TRANS: Succes message after sending private group message to group %s. #, php-format msgid "Direct message to group %s sent." -msgstr "" +msgstr "S'ha enviat el missatge directe al grup %s." diff --git a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po index b6aec332e6..c54c471a1f 100644 --- a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po new file mode 100644 index 0000000000..242e825833 --- /dev/null +++ b/plugins/GroupPrivateMessage/locale/eu/LC_MESSAGES/GroupPrivateMessage.po @@ -0,0 +1,292 @@ +# Translation of StatusNet - GroupPrivateMessage to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: An13sa +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupPrivateMessage\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:05+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown when trying to send a private group message while not logged in. +msgid "Must be logged in." +msgstr "Saioa hasi behar duzu." + +#. TRANS: Exception thrown when user %s is not allowed to send a private group message. +#. TRANS: Exception thrown when trying to send group private message without having the right to do that. +#. TRANS: %s is a user nickname. +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "%s erabiltzailea ez dago baimendurik mezu pribatuak bidaltzeko." + +#. TRANS: Client exception thrown when trying to send a private group message to a non-existing group. +#. TRANS: Client exception thrown when trying to view group inbox for non-existing group. +msgid "No such group." +msgstr "Ez dago talde hori." + +#. TRANS: Title after sending a private group message. +msgid "Message sent" +msgstr "Mezua bidalita" + +#. TRANS: Succes text after sending a direct message to group %s. +#, php-format +msgid "Direct message to %s sent." +msgstr "%s(r)i mezu zuzena bidalita." + +#. TRANS: Title of form for new private group message. +#, php-format +msgid "New message to group %s" +msgstr "%s taldeari mezu berria" + +#. TRANS: Subject for direct-message notification email. +#. TRANS: %1$s is the sending user's nickname, %2$s is the group nickname. +#, php-format +msgid "New private message from %1$s to group %2$s" +msgstr "%1$s(e)k %2$s taldera bidalitako mezu pribatu berria" + +#. TRANS: Body for direct-message notification email. +#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname, +#. TRANS: %3$s is the message content, %4$s a URL to the message, +#. TRANS: %5$s is the StatusNet sitename. +#, php-format +msgid "" +"%1$s (%2$s) sent a private message to group %3$s:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%5$s\n" +"\n" +"Do not reply to this email; it will not get to them.\n" +"\n" +"With kind regards,\n" +"%6$s" +msgstr "" +"%1$s(e)k (%2$s) %3$s taldera mezu pribatu berria bidali du:\n" +"\n" +"------------------------------------------------------\n" +"%4$s\n" +"------------------------------------------------------\n" +"\n" +"Mezuari hemen erantzun diezaiokezu:\n" +"\n" +"%5$s\n" +"\n" +"Ez erantzun email honi; ez da inora iritsiko eta.\n" +"\n" +"Ondo segi,\n" +"%6$s" + +#. TRANS: Menu item in group page. +msgctxt "MENU" +msgid "Inbox" +msgstr "Sarrera" + +#. TRANS: Menu title in group page. +msgid "Private messages for this group." +msgstr "Mezu pribatuak talde honentzat." + +#. TRANS: Dropdown label in group settings page for if group allows private messages. +msgid "Private messages" +msgstr "Mezu pribatuak" + +#. TRANS: Dropdown option in group settings page for allowing private messages. +msgid "Sometimes" +msgstr "Batzutan" + +#. TRANS: Dropdown option in group settings page for allowing private messages. +msgid "Always" +msgstr "Beti" + +#. TRANS: Dropdown option in group settings page for allowing private messages. +msgid "Never" +msgstr "Inoiz" + +#. TRANS: Dropdown title in group settings page for if group allows private messages. +msgid "Whether to allow private messages to this group." +msgstr "Talde hontan mezu pribatuen onarpena." + +#. TRANS: Dropdown label in group settings page for who can send private messages to the group. +msgid "Private senders" +msgstr "Mezu pribatu bidaltzaileak" + +#. TRANS: Dropdown option in group settings page for who can send private messages. +msgid "Everyone" +msgstr "Denak" + +#. TRANS: Dropdown option in group settings page for who can send private messages. +msgid "Member" +msgstr "Kideak" + +#. TRANS: Dropdown option in group settings page for who can send private messages. +msgid "Admin" +msgstr "Administrazaileak" + +#. TRANS: Dropdown title in group settings page for who can send private messages to the group. +msgid "Who can send private messages to the group." +msgstr "Nork bidal ditzakeen mezu pribatuak taldera." + +#. TRANS: Title for action in group actions list. +msgid "Send a direct message to this group." +msgstr "Bidali mezu zuzen bat talde honi." + +#. TRANS: Link text for action in group actions list to send a private message to a group. +msgctxt "LINKTEXT" +msgid "Message" +msgstr "Mezua" + +#. TRANS: Client exception thrown when a private group message has to be forced. +msgid "Forced notice to private group message." +msgstr "" + +#. TRANS: Indicator on the group page that the group is (essentially) private. +msgid "Private" +msgstr "Pribatua" + +#. TRANS: Plugin description. +msgid "Allow posting private messages to groups." +msgstr "Utzi mezu pribatuak taldeetan argitaratzen." + +#. TRANS: Client exception thrown when trying to view group inbox while not logged in. +msgid "Only for logged-in users." +msgstr "Saioa hasitako erabiltzaileentzat soilik." + +#. TRANS: Client exception thrown when trying to view group inbox while not a member. +msgid "Only for members." +msgstr "Erabiltzaileentzako soilik." + +#. TRANS: Text of group inbox if no private messages were sent to it. +msgid "This group has not received any private messages." +msgstr "Talde honek ez du mezu pribaturik jaso." + +#. TRANS: Title of inbox for group %s. +#, php-format +msgid "%s group inbox" +msgstr "%s taldearen sarrera" + +#. TRANS: Page title for any but first group page. +#. TRANS: %1$s is a group name, $2$s is a page number. +#, php-format +msgid "%1$s group inbox, page %2$d" +msgstr "%1$s taldearen sarrera, %2$d. orria" + +#. TRANS: Instructions for user inbox page. +msgid "" +"This is the group inbox, which lists all incoming private messages for this " +"group." +msgstr "" +"Hau taldearen sarrera ontzia da, talde honek jasotako mezu pribatu guztiak " +"zerrendatzen ditu." + +#. TRANS: Form legend for sending private message to group %s. +#, php-format +msgid "Message to %s" +msgstr "%s(r)i mezua" + +#. TRANS: Field label for private group message to group %s. +#, php-format +msgid "Direct message to %s" +msgstr "%s(r)i mezu zuzena" + +#. TRANS: Indicator for number of chatacters still available for notice. +msgid "Available characters" +msgstr "Karaktere erabilgarriak" + +#. TRANS: Send button text for sending private group notice. +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "Bidali" + +#. TRANS: Exception thrown when trying to set group privacy setting if group %s does not allow private messages. +#, php-format +msgid "Group %s does not allow private messages." +msgstr "%s taldeak ez ditu mezu pribatuak onartzen." + +#. TRANS: Exception thrown when trying to send group private message while blocked from that group. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "%1$s erabiltzailea %2$s taldean blokeaturik dago." + +#. TRANS: Exception thrown when trying to send group private message while not a member. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "%1$s erabiltzailea ez da %2$s taldeko kidea." + +#. TRANS: Exception thrown when trying to send group private message while not a group administrator. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "%1$s erabiltzailea ez da %2$s taldeko administratzailea." + +#. TRANS: Exception thrown when encountering undefined group privacy settings. +#. TRANS: %s is a group nickname. +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "%s taldearentzako pribazitate aukera ezezagunak." + +#. TRANS: Exception thrown when trying to send group private message that is too long. +#. TRANS: %d is the maximum meggage length. +#, php-format +msgid "That's too long. Maximum message size is %d character." +msgid_plural "That's too long. Maximum message size is %d characters." +msgstr[0] "Luzeegia.Gehienezko mezu luzera karaktera %d da." +msgstr[1] "Luzeegia.Gehienezko mezu luzera %d karaktere dira." + +#. TRANS: Exception thrown when trying to send group private message to a non-existing group. +msgid "No group for group message." +msgstr "Ez dago talderik talde mezurako." + +#. TRANS: Exception thrown when trying to send group private message without having a sender. +msgid "No sender for group message." +msgstr "Ez dago bidaltzailerik talde mezurako." + +#. TRANS: Client exception thrown when trying to view group private messages without being logged in. +msgid "Only logged-in users can view private messages." +msgstr "Saioa hasi duten erabiltzaileek soilik ikus ditzakete mezu pribatuak." + +#. TRANS: Client exception thrown when trying to view a non-existing group private message. +msgid "No such message." +msgstr "Ez dago mezu hori." + +#. TRANS: Server exception thrown when trying to view group private messages for a non-exsting group. +msgid "Group not found." +msgstr "Ez da taldea aurkitu." + +#. TRANS: Client exception thrown when trying to view a group private message without being a group member. +msgid "Cannot read message." +msgstr "Ezin da mezua irakurri." + +#. TRANS: Server exception thrown when trying to view a group private message without a sender. +msgid "No sender found." +msgstr "Ez da bidaltzailerik aurkitu." + +#. TRANS: Title for private group message. +#. TRANS: %1$s is the sender name, %2$s is the group name, %3$s is a timestamp. +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "%1$s(e)k %3$s(e)ko %2$s taldera bidalitako mezua" + +#. TRANS: Succes message after sending private group message to group %s. +#, php-format +msgid "Direct message to group %s sent." +msgstr "Bidali da mezu zuzena %s taldera." diff --git a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po index 635bf2c206..eeca4a40d6 100644 --- a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po index 342ff4ecba..cd630a7b57 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d79ed39f8c..dc8f91c58b 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3136180519..38c1b58eee 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" diff --git a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po index 8af7a6ef1b..3d0a9af5ec 100644 --- a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 fe75fe0cea..a808f9340e 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ca573e4235..c5db23e091 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:04+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ae721968a5..b7f06e0f11 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 07a68bf29d..cb6c8ca46a 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..8995b13690 --- /dev/null +++ b/plugins/Imap/locale/ca/LC_MESSAGES/Imap.po @@ -0,0 +1,56 @@ +# Translation of StatusNet - Imap to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: E-mail subject in case of an error. +msgid "Error" +msgstr "Error" + +#. TRANS: Exception thrown when the ImapManager is used incorrectly in the code. +msgid "" +"ImapManager should be created using its constructor, not using the static " +"\"get()\" method." +msgstr "" + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A mailbox must be specified." +msgstr "Cal especificar una bústia de correu." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A user must be specified." +msgstr "Cal especificar un usuari." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A password must be specified." +msgstr "Cal especificar una contrasenya." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +#. TRANS: poll_frequency is a setting that should not be translated. +msgid "A poll_frequency must be specified." +msgstr "" + +#. TRANS: Plugin description. +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index 5dce0a946a..e3d66ae781 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po b/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po new file mode 100644 index 0000000000..49c3f131ce --- /dev/null +++ b/plugins/Imap/locale/eu/LC_MESSAGES/Imap.po @@ -0,0 +1,60 @@ +# Translation of StatusNet - Imap to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Imap\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:07+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-imap\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: E-mail subject in case of an error. +msgid "Error" +msgstr "Akatsa" + +#. TRANS: Exception thrown when the ImapManager is used incorrectly in the code. +msgid "" +"ImapManager should be created using its constructor, not using the static " +"\"get()\" method." +msgstr "" +"ImapManager bere eraikitzailea erabiliz sortu behar da, ez \"get ()\" metodo " +"estatikoa erabiliz." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A mailbox must be specified." +msgstr "Postontzi bat zehaztu behar da." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A user must be specified." +msgstr "Erabiltzaile bat zehaztu behar da." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +msgid "A password must be specified." +msgstr "Pasahitz bat zehaztu behar da." + +#. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. +#. TRANS: poll_frequency is a setting that should not be translated. +msgid "A poll_frequency must be specified." +msgstr "Galdeketa frekuentzia zehaztu behar da." + +#. TRANS: Plugin description. +msgid "" +"The IMAP plugin allows for StatusNet to check a POP or IMAP mailbox for " +"incoming mail containing user posts." +msgstr "" +"IMAP pluginak StatusNet-i erabiltzaileen sarrerak dituzten mezuak " +"egiaztatzen uzten dio POP edo IMAP postontzietan." diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 9dc4bb7f7b..9ddac3625a 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b19c0196a1..defec312b7 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 dbbd1e4348..1a4d9dbc93 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 89613df07f..f74b7b3113 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ec3310e84e..9fa0c77813 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2bd07d9f09..c5133c2455 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" diff --git a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po index 79f52766bc..91894b2fd1 100644 --- a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 b6068a1e17..c5cffbe039 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e44c3336ed..f95a68b420 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7ec43809fa..3dc2ddc918 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 91936003df..318efc66b5 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 f687d408f0..8faaec15cf 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fe787739f4..367a24447d 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" diff --git a/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po new file mode 100644 index 0000000000..b29f5ba533 --- /dev/null +++ b/plugins/InProcessCache/locale/gl/LC_MESSAGES/InProcessCache.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - InProcessCache to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InProcessCache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-inprocesscache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin dscription. +msgid "Additional in-process cache for plugins." +msgstr "Memoria caché adicional para os complementos." diff --git a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po index 95801db8e6..2510e9d572 100644 --- a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\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 16e0f1c131..a0ae1516d6 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d2404fa1be..e2264a90ee 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d6ddf25e25..5edfb141af 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7b121724fa..ca0f9ae7fa 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5de8491363..4332464eb0 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 47b117bb20..8a1ab1e30b 100644 --- a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b2ac99caea..ac5f0be567 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 69617cc01d..2a5020cf89 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:10+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f4bdf777f7..2b8d487c56 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 55aafc7a17..15f79655c9 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ac1d8159b9..384eca4319 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..5b7f7c019e --- /dev/null +++ b/plugins/InfiniteScroll/locale/eu/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,34 @@ +# Translation of StatusNet - InfiniteScroll to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin dscription. +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Infinite Scroll pluginak scrollarekin behera egin einean orria luzatzen du " +"ohar zaharrak azpikaldean gehituz, \"Hurrengo Orria\" linka ezabatzen du " +"aldi berean." diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index dd7313ab2d..5d8e8b1d9e 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" diff --git a/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po new file mode 100644 index 0000000000..842381eae4 --- /dev/null +++ b/plugins/InfiniteScroll/locale/gl/LC_MESSAGES/InfiniteScroll.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - InfiniteScroll to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - InfiniteScroll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:08+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-infinitescroll\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin dscription. +msgid "" +"Infinite Scroll adds the following functionality to your StatusNet " +"installation: When a user scrolls towards the bottom of the page, the next " +"page of notices is automatically retrieved and appended. This means they " +"never need to click \"Next Page\", which dramatically increases stickiness." +msgstr "" +"Infinite Scroll engade a seguinte funcionalizade á súa instalación de " +"StatusNet: Cando un usuario se despraza ata o pé da páxina, recupérase e " +"engádese a seguinte páxina de notas. Isto significa que non é necesario " +"premer en \"Páxina seguinte\", algo que aumenta considerablemente a " +"capacidade de retención." diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index 3ac43f79f6..2b4ceb06e4 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3766c4a9ec..916c2a21ab 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1e2da3e9fa..e2ef2f8b03 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 03d53d9162..601bc7401b 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b116445aee..064a73d1ae 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0895c1af8a..a805fed203 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 98400f0e8c..9333190c7b 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0001b96774..1fbcebc859 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:09+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5fd3456e4d..fe812e9bde 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 43d56abdb7..56421ca5e3 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 aa5b4ac415..72d146ceb5 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 de604bd917..55f75e87cc 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 48440e151c..a6f243f582 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/de/LC_MESSAGES/Irc.po b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po index aefcfff6a3..7d55eafcd7 100644 --- a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\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 350273894e..0f0f8b9bd7 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2489157f7e..12f0373579 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fa59747d13..5a4a15102d 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e85ab6bf74..eaa7037980 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c90ae7db38..00f571b635 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:12+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fa9ed3be0a..85ef8366d1 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1e93ca9b28..648ea9d6ff 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b33cded326..4d10d4ba40 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 ecd5f8e432..0bd83290e4 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\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 bb624f51a9..db1ec8cb26 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index 3403f9e980..c4abe5224c 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\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 6fc7f33b3a..e5a694c8f1 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\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 d29b8bccb5..77afc71e32 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\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 6bc01f0b6a..a759558194 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 aefe754cff..a8e6ef3cbd 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 28fff6c28c..5484fb934d 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 50d770b95c..099c9a4cca 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\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 5aec10446e..3a32816b74 100644 --- a/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/fr/LC_MESSAGES/LdapAuthorization.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index 1d3f9292d1..4cb85e5bc4 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index bdae0ebe4c..068add3ddd 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\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 c5a5e01e83..5d9bc659f7 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\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 381dc0bf39..0183b17499 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4fd4f57a5b..82af14281a 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" diff --git a/plugins/LdapCommon/locale/LdapCommon.pot b/plugins/LdapCommon/locale/LdapCommon.pot index 774dea1805..2c9f43093f 100644 --- a/plugins/LdapCommon/locale/LdapCommon.pot +++ b/plugins/LdapCommon/locale/LdapCommon.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po index d5d6b9b853..9eba540cfe 100644 --- a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po index 947e4cb061..89a74956b3 100644 --- a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po index 7d4174d6cf..bab2db99eb 100644 --- a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po index adcb11517b..ea382afb8a 100644 --- a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po index 47160c650a..8c303fee72 100644 --- a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po index b7789fb796..8ea35de2bc 100644 --- a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po index dc1f2ad179..a9668ced5e 100644 --- a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 6292908c16..89ad9f9cad 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ca/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po index 12aac6bba2..4247e447b3 100644 --- a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index 1212aee2a9..ab635067b6 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..5ed9eb7bd2 --- /dev/null +++ b/plugins/LilUrl/locale/eu/LC_MESSAGES/LilUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - LilUrl to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. +msgid "A serviceUrl must be specified." +msgstr "serviceUrl bat zehaztu bhear da." + +#. TRANS: Plugin description. +#. TRANS: %1$s is the service URL. +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "%1$s URL-laburtze zerbitzua erabiltzen." diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index a6fb5f96f1..dcf901e353 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po new file mode 100644 index 0000000000..5e2e91ab21 --- /dev/null +++ b/plugins/LilUrl/locale/gl/LC_MESSAGES/LilUrl.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - LilUrl to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LilUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-lilurl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. +msgid "A serviceUrl must be specified." +msgstr "Cómpre especificar un serviceUrl." + +#. TRANS: Plugin description. +#. TRANS: %1$s is the service URL. +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Emprega o servizo de abreviación de enderezos URL %1" +"$s." diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index b5509dbb9c..627179a8e5 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2c88d69cb7..5eec68a77a 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 444654f89d..6fd436eecd 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:15+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 25c4157e06..f7921e679e 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e75926eafb..79bee23600 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a33ff2b128..7fd296cf31 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d3cfd2be92..003b389c77 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3635e847f6..97d6923cae 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po index e06c236bc8..074c99aa53 100644 --- a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:16+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 4ae2d4f5ff..d541ceadd6 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a06b7b327e..f85c126fb3 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d07891c3cf..114d642f6a 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" diff --git a/plugins/LinkPreview/linkpreview.js b/plugins/LinkPreview/linkpreview.js index 132c4c8d77..e6e98bdb4d 100644 --- a/plugins/LinkPreview/linkpreview.js +++ b/plugins/LinkPreview/linkpreview.js @@ -7,7 +7,7 @@ * Quickie wrapper around ooembed JSON lookup */ var oEmbed = { - api: 'http://oohembed.com/oohembed', + api: 'https://noembed.com/embed', width: 100, height: 75, cache: {}, diff --git a/plugins/LinkPreview/linkpreview.min.js b/plugins/LinkPreview/linkpreview.min.js index ea28f6bfee..99af83913e 100644 --- a/plugins/LinkPreview/linkpreview.min.js +++ b/plugins/LinkPreview/linkpreview.min.js @@ -1 +1 @@ -(function(){var b={api:"http://oohembed.com/oohembed",width:100,height:75,cache:{},callbacks:{},lookup:function(d,e){if(typeof b.cache[d]=="object"){e(b.cache[d])}else{if(typeof b.callbacks[d]=="undefined"){b.callbacks[d]=[e];b.rawLookup(d,function(h){b.cache[d]=h;var g=b.callbacks[d];b.callbacks[d]=undefined;for(var f=0;f')}},prepLinkPreview:function(g){var h="link-preview-"+g;var f=e.links[g];e.refresh[g]=false;e.markLoading(g);b.lookup(f,function(l){var i=null;var j=100;if(l&&typeof l.thumbnail_url=="string"){i=l.thumbnail_url;if(typeof l.thumbnail_width!=="undefined"){if(l.thumbnail_width');k.find("a").attr("href",f).attr("target","_blank").last().find("img").attr("src",i).attr("width",j).attr("title",l.title||l.url||f);d.find("."+h).empty().append(k)}else{e.clearLink(g)}if(e.refresh[g]){e.prepLinkPreview(g)}else{e.markDone(g)}})},previewLinks:function(j){var h;var f=e.links;var g=e.findLinks(j);e.links=g;for(h=0;hf.length){for(h=f.length;hg.length){for(h=g.length;h')}},clearLink:function(f){var g="link-preview-"+f;d.find("."+g).html("")},markLoading:function(f){e.state[f]="loading";var g="link-preview-"+f;d.find("."+g).attr("style","opacity: 0.5")},markDone:function(f){e.state[f]="done";var g="link-preview-"+f;d.find("."+g).removeAttr("style")},clear:function(){e.links=[];d.find(".link-preview").remove()}};d.data("LinkPreview",e)}})(); \ No newline at end of file +(function(){var b={api:"https://noembed.com/embed",width:100,height:75,cache:{},callbacks:{},lookup:function(d,e){if(typeof b.cache[d]=="object"){e(b.cache[d])}else{if(typeof b.callbacks[d]=="undefined"){b.callbacks[d]=[e];b.rawLookup(d,function(h){b.cache[d]=h;var g=b.callbacks[d];b.callbacks[d]=undefined;for(var f=0;f')}},prepLinkPreview:function(g){var h="link-preview-"+g;var f=e.links[g];e.refresh[g]=false;e.markLoading(g);b.lookup(f,function(l){var i=null;var j=100;if(l&&typeof l.thumbnail_url=="string"){i=l.thumbnail_url;if(typeof l.thumbnail_width!=="undefined"){if(l.thumbnail_width');k.find("a").attr("href",f).attr("target","_blank").last().find("img").attr("src",i).attr("width",j).attr("title",l.title||l.url||f);d.find("."+h).empty().append(k)}else{e.clearLink(g)}if(e.refresh[g]){e.prepLinkPreview(g)}else{e.markDone(g)}})},previewLinks:function(j){var h;var f=e.links;var g=e.findLinks(j);e.links=g;for(h=0;hf.length){for(h=f.length;hg.length){for(h=g.length;h')}},clearLink:function(f){var g="link-preview-"+f;d.find("."+g).html("")},markLoading:function(f){e.state[f]="loading";var g="link-preview-"+f;d.find("."+g).attr("style","opacity: 0.5")},markDone:function(f){e.state[f]="done";var g="link-preview-"+f;d.find("."+g).removeAttr("style")},clear:function(){e.links=[];d.find(".link-preview").remove()}};d.data("LinkPreview",e)}})(); \ No newline at end of file diff --git a/plugins/LinkPreview/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 3a561b4f4c..71e677d466 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 cb5f360e42..61875a081b 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f98c144eaf..b1d8eeff78 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\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 1d35d77979..b107649c2d 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3347484254..15005d8a94 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a080df2ac6..4035346b45 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po index 7a4b063244..808edfeed6 100644 --- a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 c723fe6c05..9cf3711a4d 100644 --- a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1f2efc82b7..e4e345e550 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" diff --git a/plugins/LinkPreview/oembedproxyaction.php b/plugins/LinkPreview/oembedproxyaction.php index fd2f46f5fc..7e54aca570 100644 --- a/plugins/LinkPreview/oembedproxyaction.php +++ b/plugins/LinkPreview/oembedproxyaction.php @@ -35,7 +35,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * * This class provides an interface for our JS-side code to pull info on * links from other sites, using either native oEmbed, our own custom - * handlers, or the oohEmbed.com offsite proxy service as configured. + * handlers, or the noembed.com offsite proxy service as configured. * * @category oEmbed * @package StatusNet diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index fa824fbd24..e6174f9f72 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po index 9f0ad6fbc5..29b9c2b559 100644 --- a/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po index 9f8ed8423e..7dfd7d5d1d 100644 --- a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index 140c6604df..66463a2620 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 02b348bafc..7e4a2d936c 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d7dbb0623a..d32a234089 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 251fd99470..ab2ebd61ba 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" diff --git a/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..efd8144218 --- /dev/null +++ b/plugins/Linkback/locale/gl/LC_MESSAGES/Linkback.po @@ -0,0 +1,41 @@ +# Translation of StatusNet - Linkback to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:17+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Trackback title. +#. TRANS: %1$s is a profile nickname, %2$s is a timestamp. +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Estado de %1$s en %2$s" + +#. TRANS: Plugin description. +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" +"Notificar aos autores de blogues cando as súas entradas foron ligadas nas " +"notas de microblogues mediante os protocolos Pingback ou Trackback." diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index 5c05b6ea69..59b434b384 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 63a8c26c30..1ed8794694 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ba75d64370..4b25a6f5dd 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a734e32ea6..0e89883980 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0249db58e5..695fb935d0 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 63accfcbe3..7b8288a183 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e4ad648e6c..16fa24f4a0 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:18+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 846d557ce0..d2fe7db657 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e3da7c5a4e..53a59bd027 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d06c666b34..068492c209 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3ca89208a4..c72b82388d 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 996625f7df..bf960c72eb 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 f789d4dbdf..4f9b24c581 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3d9d66bdec..ed73a3cea6 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5dca5bae7d..0b5e571138 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:19+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" diff --git a/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po new file mode 100644 index 0000000000..83fe27bbcc --- /dev/null +++ b/plugins/LogFilter/locale/gl/LC_MESSAGES/LogFilter.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - LogFilter to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - LogFilter\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:29+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-logfilter\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Provides server-side setting to filter log output by type or keyword." +msgstr "" +"Proporciona unha configuración do servidor para filtrar a saída do rexistro " +"por tipo ou palabra clave." diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index 8f78b19c60..68521aceb1 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 232674e377..08d0de364f 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 387b14a131..0dba2f39dd 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c6edcc5868..cdb8e0c0ea 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f1f37df2c4..5d26b71cd4 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 57ced7c187..c1ba02bd87 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2fbf552b34..96c92c6f88 100644 --- a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 508902a144..f4a2e3650a 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9ea53c7423..630cbe3dd2 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:20+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 28fa4d1b31..3db4d4d0b0 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 685671ff99..7af311eb7b 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po index b835c16687..49763eb4b6 100644 --- a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -45,7 +46,7 @@ msgstr "Mapa d'amics de %s" #. TRANS: %1$s is a user nickname, %2$d is a page number. #, php-format msgid "%1$s friends map, page %2$d" -msgstr "" +msgstr "Mapa d'amics de %1$s, pàgina %2$d" #. TRANS: Client error displayed when referring to a non-existing user. msgid "No such user." diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 21bcdd5620..c1b584319b 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e3f7892d70..fa150dfb28 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d19ae85bc1..75d98ff9ec 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1a971eb290..608ac84877 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 293c23b98e..cfe5f6d08c 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po index 7c207e2750..e9a15d776b 100644 --- a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:21+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: hu\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 b4560eacff..48e4baab47 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" diff --git a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po index 776b96b8b5..62df5808dd 100644 --- a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lb\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 6b528bce3c..f7889debcd 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8a093a0b98..e3147ab2d8 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 597f24c9bc..fe12a24941 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f7075dbe2b..14da4b0cae 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a8227a66ec..cd4a09a06a 100644 --- a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 da48e515ff..89a017a449 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" "Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 437de047bc..7586a6e00d 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e81f66bee6..e989768ab2 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e8856668e9..174d232f56 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ba82939fcc..6892d3ef6b 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:22+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ea947fca48..56463a63bb 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 b76b9ed2c1..176092f551 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1c28fc8e9f..77f57c4478 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2aa81684c4..d9009dadbc 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 860d03b24f..108b3f39e9 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po new file mode 100644 index 0000000000..990720e58f --- /dev/null +++ b/plugins/Memcache/locale/gl/LC_MESSAGES/Memcache.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Memcache to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcache\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-memcache\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Usar Memcached para incluír na memoria " +"caché os resultados da pescuda." diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index c81c24d7bc..57b7c1a51e 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 aaeeaf3d7e..1cd39c8215 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bdf583a728..1248a6546a 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6d9439d4bb..318f2c3159 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:23+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 861609790c..8f8e3b7852 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6af14ad08d..5e3e851ee9 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 dd7896a069..69f0d59f66 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 325d46937f..ad308e0802 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" diff --git a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po index 224a1bec3e..7d6766280c 100644 --- a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 13cdbf7d8e..834b32d910 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c2bfc3b9b1..e44188a693 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 df3e040239..0cb3f75ad7 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:18+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2a3341ed4f..7e40015d83 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 8bc1627dc0..3ac84e76cf 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1409380cd1..0ffed98e48 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4370518712..03e6f3e653 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:24+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 69d688c3c1..c48a1cfa8b 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po new file mode 100644 index 0000000000..4b8e8b0d7e --- /dev/null +++ b/plugins/Memcached/locale/gl/LC_MESSAGES/Memcached.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - Memcached to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Memcached\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-memcached\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Use Memcached to cache query results." +msgstr "" +"Usar Memcached para incluír na memoria " +"caché os resultados da pescuda." diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index 3ac714d087..ed44307515 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7fd7589c62..85f767e8b1 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 dd11cf6bbf..da82d79946 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 04e56a7282..e3e385226a 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f9468b59e8..07c3a00bd3 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ab4901578a..eae309593b 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 95f23e48aa..090988712b 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f9cd17599a..41d62c66ab 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 398b7ab683..ae5a79fb08 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" diff --git a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po index 3498d098ec..d17dc3a72e 100644 --- a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 d30acf5860..407459c77e 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 da8280ba8d..2836ddd64d 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6a7ef9b7a1..bbbec1225a 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:25+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 25f2ff6bbe..92a2e63cc4 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 7baa0a8ddf..2608a7b017 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f29ca6e31e..f723f42eac 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 027c614b4d..ac02ac8930 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index 99b54d42e3..f0d6622059 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 06c63613db..18b322b978 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:26+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 08448deca0..55a1365fcd 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 09306878aa..4a3a3df76c 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 97a7cd427a..76d11f19fb 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 3084da78df..120cbf43db 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 298f5eb1e5..b00a368634 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/LC_MESSAGES/Minify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9d21b9bac6..c9acd3eca9 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ae1c94c6a1..958742321b 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 54d1f21f4e..2af9a355df 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5a5fca2ade..db8f9135fb 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1fe116c069..2c1b05efe1 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d5141f34a4..3719154395 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po index 204ac8ce94..2d14a25fd3 100644 --- a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:28+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 25475efd64..277e64ac42 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 88f2c1cea6..61d7765e1f 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a469d87d63..d2e46a52a2 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" diff --git a/plugins/MobileProfile/MobileProfilePlugin.php b/plugins/MobileProfile/MobileProfilePlugin.php index e6bc444ea4..76d285ba27 100644 --- a/plugins/MobileProfile/MobileProfilePlugin.php +++ b/plugins/MobileProfile/MobileProfilePlugin.php @@ -111,6 +111,7 @@ class MobileProfilePlugin extends WAP20Plugin 'ipod', 'j2me', 'lg', + 'maemo', 'midp-', 'mobile', 'mot', diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 9fabd1e1d5..2eea61e608 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,21 +17,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. TRANS: Client exception thrown when requesting a not supported media type. -#: MobileProfilePlugin.php:199 +#: MobileProfilePlugin.php:200 msgid "This page is not available in a media type you accept." msgstr "" #. TRANS: Link to switch site layout from mobile to desktop mode. Appears at very bottom of page. -#: MobileProfilePlugin.php:376 +#: MobileProfilePlugin.php:377 msgid "Switch to desktop site layout." msgstr "" #. TRANS: Link to switch site layout from desktop to mobile mode. Appears at very bottom of page. -#: MobileProfilePlugin.php:380 +#: MobileProfilePlugin.php:381 msgid "Switch to mobile site layout." msgstr "" #. TRANS: Plugin description. -#: MobileProfilePlugin.php:418 +#: MobileProfilePlugin.php:419 msgid "XHTML MobileProfile output for supporting user agents." msgstr "" diff --git a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po index a5c9dbe8dd..992c06ce7e 100644 --- a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" @@ -23,7 +24,7 @@ msgstr "" #. TRANS: Client exception thrown when requesting a not supported media type. msgid "This page is not available in a media type you accept." -msgstr "" +msgstr "La pàgina no està disponible en un tipus de suport que accepteu." #. TRANS: Link to switch site layout from mobile to desktop mode. Appears at very bottom of page. msgid "Switch to desktop site layout." @@ -36,3 +37,4 @@ msgstr "Canvia a lloc web en mode mòbil." #. TRANS: Plugin description. msgid "XHTML MobileProfile output for supporting user agents." msgstr "" +"Sortida en XHTML MobileProfile per als agents d'usuari que ho accepten." diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index c194db0c30..ce39043d20 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:28+0000\n" "Language-Team: Chechen \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f5c5043804..9aacee9698 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..48d2b2549d --- /dev/null +++ b/plugins/MobileProfile/locale/eu/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - MobileProfile to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown when requesting a not supported media type. +msgid "This page is not available in a media type you accept." +msgstr "Orri hau ez dago eskuragarri darabilzun gailu mota bidez." + +#. TRANS: Link to switch site layout from mobile to desktop mode. Appears at very bottom of page. +msgid "Switch to desktop site layout." +msgstr "Aldatu mahaigain gune modura." + +#. TRANS: Link to switch site layout from desktop to mobile mode. Appears at very bottom of page. +msgid "Switch to mobile site layout." +msgstr "Aldatu mugikor gune modura." + +#. TRANS: Plugin description. +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index 2aff2457f6..f858dc8b80 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ef817fafa0..6f7d15d353 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\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 f89fc2a703..bed5a51ab0 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e33844a02d..8bd6586aa3 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c37ad00057..41a426d057 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f175f54433..44f3089f3b 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index c35ab81750..f4c9b86c9f 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:22+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 69507f7a25..195a5e6c50 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:29+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 508d04c0ff..29436b3cbf 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 95575b7df7..cc07df5151 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 74d01bc6ef..3551b8f8be 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bbc30bc0d3..daad6790c0 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 5b94a183a5..2727497b8c 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f6c909bf94..5fea735183 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cd51c43fa2..7f24006aae 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" diff --git a/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po new file mode 100644 index 0000000000..e0bbe1361b --- /dev/null +++ b/plugins/ModHelper/locale/gl/LC_MESSAGES/ModHelper.po @@ -0,0 +1,30 @@ +# Translation of StatusNet - ModHelper to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ModHelper\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-modhelper\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Lets users who have been manually marked as \"modhelper\"s silence accounts." +msgstr "" +"Permite silenciar contas aos usuarios que foron marcados manualmente como " +"\"modhelper\"." diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index aa8742d562..f474ffad72 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 546d8afbb5..165211b8ce 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 38fbdbf756..abbf46a419 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4252728b9b..ddddaee956 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ed5e0fa25e..0d6515f64f 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bcc0885792..ff1a809523 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:23+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3eb8df3698..304c44d324 100644 --- a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6620a43784..39ea8f3799 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:30+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b7b8082c88..4befd07460 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ca/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po new file mode 100644 index 0000000000..1eaa53bbca --- /dev/null +++ b/plugins/ModPlus/locale/ca/LC_MESSAGES/ModPlus.po @@ -0,0 +1,58 @@ +# Translation of StatusNet - ModPlus to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ModPlus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-modplus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Error message displayed when referring to a user without a profile. +msgid "User has no profile." +msgstr "L'usuari no té perfil." + +#. TRANS: Remote profile action page title. +#. TRANS: %1$s is a username, %2$s is a hostname. +#, php-format +msgid "%1$s on %2$s" +msgstr "%1$s a %2$s" + +#. TRANS: Message on remote profile page. +#. TRANS: This message contains Markdown links in the form [description](link). +#. TRANS: %1$s is a profile nickname, %2$s is a hostname, %3$s is a URL. +#, php-format +msgid "" +"This remote profile is registered on another site; see [%1$s's original " +"profile page on %2$s](%3$s)." +msgstr "" +"Aquest perfil remot està registrat en un altre lloc; vegeu [la pàgina del " +"perfil de %1$s original a %2$s](%3$s)." + +#. TRANS: Message on blocked remote profile page. +msgid "" +"Site moderators have silenced this profile, which prevents delivery of new " +"messages to any users on this site." +msgstr "" + +#. TRANS: Plugin description. +msgid "UI extension for profile moderation actions." +msgstr "" + +#. TRANS: Label for access to remote profile options. +msgid "Remote profile options..." +msgstr "Opcions de perfil remot..." diff --git a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po index 7fc316c591..626ed27a89 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 08ee95bd89..16d98a3d1c 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 11cff15718..e217f91c5e 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ba2d50e183..e4043bc3cd 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ce903583b9..ab645e62a2 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cf56416d75..8eea76ede4 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 444b294c50..b318a4b544 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 157300d535..cbf85955aa 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 770d5552c0..086ae675cc 100644 --- a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po index 94154ee9fa..b67b1ac877 100644 --- a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po index d349a36033..3845ceb925 100644 --- a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po new file mode 100644 index 0000000000..19f97a37da --- /dev/null +++ b/plugins/Mollom/locale/gl/LC_MESSAGES/Mollom.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - Mollom to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Mollom\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-mollom\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown when notice content triggers the spam filter. +msgid "Spam Detected." +msgstr "Spam detectado." diff --git a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po index 4273244ba1..b410cb64dd 100644 --- a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\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 b06ac9595b..9d03372bfe 100644 --- a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f9633028c3..0fb9289584 100644 --- a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 46e133e4fa..f107e52923 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" diff --git a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po index 4cc4f18cfb..300f06464b 100644 --- a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:33+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 9899d4719a..76c1f292a2 100644 --- a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3dadb70165..7d5a87ab71 100644 --- a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 dd7012bcea..e80502e8a6 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po index 505b848b22..ba24b062f3 100644 --- a/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po new file mode 100644 index 0000000000..8be814e0d8 --- /dev/null +++ b/plugins/Msn/locale/ca/LC_MESSAGES/Msn.po @@ -0,0 +1,52 @@ +# Translation of StatusNet - Msn to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Msn\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-msn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: MSN bot status message. +msgid "Send me a message to post a notice" +msgstr "Envia'm un missatge per publicar un avís" + +#. TRANS: Server exception thrown when a message to be sent through MSN cannot be added to the database queue. +msgid "Database error inserting queue item." +msgstr "" + +#. TRANS: Display name of the MSN instant messaging service. +msgid "MSN" +msgstr "" + +#. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. +msgid "Must specify a user." +msgstr "Cal especificar un usuari." + +#. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. +msgid "Must specify a password." +msgstr "Cal especificar una contrasenya." + +#. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. +msgid "Must specify a nickname." +msgstr "Cal especificar un sobrenom." + +#. TRANS: Plugin description. +msgid "" +"The MSN plugin allows users to send and receive notices over the MSN network." +msgstr "" diff --git a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po index b10bfedd1c..5a78b9cc48 100644 --- a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po b/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po new file mode 100644 index 0000000000..a277846c8b --- /dev/null +++ b/plugins/Msn/locale/eu/LC_MESSAGES/Msn.po @@ -0,0 +1,54 @@ +# Translation of StatusNet - Msn to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Msn\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:34+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-msn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: MSN bot status message. +msgid "Send me a message to post a notice" +msgstr "Bidalidazu mezu bat ohar bat argitaratzeko" + +#. TRANS: Server exception thrown when a message to be sent through MSN cannot be added to the database queue. +msgid "Database error inserting queue item." +msgstr "Datubase akatsa zerrendako puntua txertatzerakoan." + +#. TRANS: Display name of the MSN instant messaging service. +msgid "MSN" +msgstr "MSN" + +#. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. +msgid "Must specify a user." +msgstr "Erabiltzaile bat zehaztu." + +#. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. +msgid "Must specify a password." +msgstr "Pasahitz bat zehaztu." + +#. TRANS: Exception thrown when configuration for the MSN plugin is incomplete. +msgid "Must specify a nickname." +msgstr "Goitizen bat zehaztu." + +#. TRANS: Plugin description. +msgid "" +"The MSN plugin allows users to send and receive notices over the MSN network." +msgstr "" +"MSN pluginak erabiltzaileei MSN sare bidez oharrak bidali eta jasotzen uzten " +"du." diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index f8f6427521..de3404c701 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6615aeab95..d754c607ae 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6afef46632..d95ddb764f 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\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 2a7cd933db..fe1464617c 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:35+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0fde521720..371f01a55c 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 717a5506c3..44af9f9dde 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 38aecf8df2..6e3fefebae 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 3eb976a262..2bc6f4a305 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 10cce18682..c9c703a0b4 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 01dd3c1a7c..b9a1657643 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po new file mode 100644 index 0000000000..a94a40be62 --- /dev/null +++ b/plugins/NoticeTitle/locale/eu/LC_MESSAGES/NoticeTitle.po @@ -0,0 +1,40 @@ +# Translation of StatusNet - NoticeTitle to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NoticeTitle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:35+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-noticetitle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Adds optional titles to notices." +msgstr "Oharrei tituluak gehitzen uzten du." + +#. TRANS: Exception thrown when a notice title is too long. +#. TRANS: %d is the maximum number of characters allowed in a title (used for plural). +#, php-format +msgid "The notice title is too long (maximum %d character)." +msgid_plural "The notice title is too long (maximum %d characters)." +msgstr[0] "Oharraren titulua luzeegia da (gehienez ere karaktere %d)." +msgstr[1] "Oharraren titulua luzeegia da (gehienez ere %d karaktere." + +#. TRANS: Page title. %1$s is the title, %2$s is the site name. +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 1d43e2f092..05554d133d 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 08668a46de..3fe82a1ae4 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ce4ca9dc47..47cb849347 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 945e077c39..2d16012bef 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bc259064d1..365d84ed07 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 59b1ba0cc7..fbbc5019ad 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a559625a77..33df80e24f 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index 3f176b73a9..fc7d216d89 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po index f3e4b2cf5f..6df0bd643f 100644 --- a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:36+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 f3f336f911..41649117dd 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0898b0e975..9cb4987304 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" diff --git a/plugins/OMB/locale/OMB.pot b/plugins/OMB/locale/OMB.pot index ce1a23e071..f28998e5fc 100644 --- a/plugins/OMB/locale/OMB.pot +++ b/plugins/OMB/locale/OMB.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po index d7d7de0826..24bc35aad3 100644 --- a/plugins/OMB/locale/br/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/br/LC_MESSAGES/OMB.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:37+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-omb\n" diff --git a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po index 303e673ccb..ffb01a2fab 100644 --- a/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ca/LC_MESSAGES/OMB.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-omb\n" diff --git a/plugins/OMB/locale/de/LC_MESSAGES/OMB.po b/plugins/OMB/locale/de/LC_MESSAGES/OMB.po new file mode 100644 index 0000000000..f90e1a1e80 --- /dev/null +++ b/plugins/OMB/locale/de/LC_MESSAGES/OMB.po @@ -0,0 +1,60 @@ +# Translation of StatusNet - OMB to German (Deutsch) +# Exported from translatewiki.net +# +# Author: Marcel083 +# Author: Tiin +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OMB\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-08-15 14:12:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-omb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Abonnieren" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Accept" +msgstr "Annehmen" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Reject" +msgstr "Ablehnen" + +#. 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 "" + +#. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. +msgid "You cannot list an OMB 0.1 remote profile with this action." +msgstr "" + +#. TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. +msgid "You cannot (un)list an OMB 0.1 remote profile with this action." +msgstr "" + +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +msgid "Could not delete subscription OMB token." +msgstr "" + +#. TRANS: Plugin description. +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" diff --git a/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po new file mode 100644 index 0000000000..f759827b34 --- /dev/null +++ b/plugins/OMB/locale/eu/LC_MESSAGES/OMB.po @@ -0,0 +1,60 @@ +# Translation of StatusNet - OMB to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OMB\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:38+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-08-15 14:12:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-omb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Button text on page for remote subscribe. +#. TRANS: Link text for link that will subscribe to a remote profile. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Harpidetu" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Accept" +msgstr "Onartzu" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Reject" +msgstr "Baztertu" + +#. 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 "Ezin zaitezke OMB 0.1 hurruneko profilera harpidetu ekintza honekin." + +#. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. +msgid "You cannot list an OMB 0.1 remote profile with this action." +msgstr "Ezin duzu OMB 0.1 hurruneko profil bat zerrendatu ekintza honekin." + +#. TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. +msgid "You cannot (un)list an OMB 0.1 remote profile with this action." +msgstr "" +"Ezin duzu OMB 0.1 hurruneko profil bat (des)zerrendatu ekintza honekin." + +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +msgid "Could not delete subscription OMB token." +msgstr "OMB token harpidetza ezin da ezabatu." + +#. TRANS: Plugin description. +msgid "A sample plugin to show basics of development for new hackers." +msgstr "Frogako plugin bat, hacker berriei garapen oinarriak erakusteko." diff --git a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po index 5f86fb24df..48bef9b8ae 100644 --- a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-omb\n" diff --git a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po index 8b2e8d968e..c94391ee90 100644 --- a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-omb\n" diff --git a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po index 3922090546..7e6dafda00 100644 --- a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-omb\n" diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 69333c3db7..749b450f64 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po new file mode 100644 index 0000000000..f26aa18235 --- /dev/null +++ b/plugins/OStatus/locale/ca/LC_MESSAGES/OStatus.po @@ -0,0 +1,941 @@ +# Translation of StatusNet - OStatus to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Gemmaa +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OStatus\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-09-11 15:10:42+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-ostatus\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: String in the gettext speed test script. Unimportant. +msgid "Feeds" +msgstr "Canals" + +#. TRANS: Link to subscribe to a remote entity. +#. TRANS: Link text for a user to subscribe to an OStatus user. +msgid "Subscribe" +msgstr "Subscriu" + +#. TRANS: Fieldset legend. +msgid "List remote profile" +msgstr "Llista els perfils remots" + +#. TRANS: Field label. +msgctxt "LABEL" +msgid "Remote profile" +msgstr "Perfil remot" + +#. TRANS: Field title. +#. TRANS: Tooltip for field label "Subscribe to". +msgid "" +"OStatus user's address, like nickname@example.com or http://example.net/" +"nickname." +msgstr "" +"L'adreça d'usuari d'OStatus, com ara sobrenom@example.com o http://example." +"net/sobrenom." + +#. TRANS: Button text to fetch remote profile. +msgctxt "BUTTON" +msgid "Fetch" +msgstr "Recupera" + +#. TRANS: Exception in OStatus when invalid URI was entered. +msgid "Invalid URI." +msgstr "URL no vàlid." + +#. TRANS: Error message in OStatus plugin. Do not translate the domain names example.com +#. TRANS: and example.net, as these are official standard domain names for use in examples. +msgid "" +"Sorry, we could not reach that address. Please make sure that the OStatus " +"address is like nickname@example.com or http://example.net/nickname." +msgstr "" +"No s'ha pogut aconseguir l'adreça. Assegureu-vos que l'adreça OStatus és com " +"sobrenom@example.com o http://example.net/sobrenom." + +#. TRANS: Title. %s is a domain name. +#, php-format +msgid "Sent from %s via OStatus" +msgstr "Enviat de %s a través d'OStatus" + +#. TRANS: Exception thrown when setup of remote subscription fails. +msgid "Could not set up remote subscription." +msgstr "No s'ha pogut establir la subscripció remota." + +#. TRANS: Title for unfollowing a remote profile. +msgctxt "TITLE" +msgid "Unfollow" +msgstr "Deixa de seguir" + +#. TRANS: Success message for unsubscribe from user attempt through OStatus. +#. TRANS: %1$s is the unsubscriber's name, %2$s is the unsubscribed user's name. +#, php-format +msgid "%1$s stopped following %2$s." +msgstr "%1$s ha deixat de seguir %2$s." + +#. TRANS: Exception thrown when setup of remote group membership fails. +msgid "Could not set up remote group membership." +msgstr "No s'ha pogut definir la pertanyença al grup remot." + +#. TRANS: Title for joining a remote groep. +msgctxt "TITLE" +msgid "Join" +msgstr "Uneix" + +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s s'ha unit al grup %2$s." + +#. TRANS: Exception thrown when joining a remote group fails. +msgid "Failed joining remote group." +msgstr "No s'ha pogut unir al grup remot." + +#. TRANS: Title for leaving a remote group. +msgctxt "TITLE" +msgid "Leave" +msgstr "Deixa" + +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#, php-format +msgid "%1$s has left group %2$s." +msgstr "%1$s ha deixat el grup %2$s." + +#. TRANS: Exception thrown when setup of remote list subscription fails. +msgid "Could not set up remote list subscription." +msgstr "No s'ha pogut definir la subscripció a la llista remota." + +#. TRANS: Title for following a remote list. +msgctxt "TITLE" +msgid "Follow list" +msgstr "Segueix la llista" + +#. TRANS: Success message for remote list follow through OStatus. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. +#, php-format +msgid "%1$s is now following people listed in %2$s by %3$s." +msgstr "%1$s està seguint ara gent llistada a %2$s per %3$s." + +#. TRANS: Exception thrown when subscription to remote list fails. +msgid "Failed subscribing to remote list." +msgstr "No s'ha pogut subscriu a la llista remota." + +#. TRANS: Title for unfollowing a remote list. +msgid "Unfollow list" +msgstr "Deixa de seguir la llista" + +#. TRANS: Success message for remote list unfollow through OStatus. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. +#, php-format +msgid "%1$s stopped following the list %2$s by %3$s." +msgstr "%1$s ha deixat de seguir la llista %2$s per %3$s." + +#. TRANS: Title for listing a remote profile. +msgctxt "TITLE" +msgid "List" +msgstr "Llista" + +#. TRANS: Success message for remote list addition through OStatus. +#. TRANS: %1$s is the list creator's name, %2$s is the added list member, %3$s is the list name. +#, php-format +msgid "%1$s listed %2$s in the list %3$s." +msgstr "%1$s ha llista %2$s a la llista %3$s." + +#. TRANS: Exception thrown when subscribing to a remote list fails. +#, php-format +msgid "" +"Could not complete subscription to remote profile's feed. List %s could not " +"be saved." +msgstr "" +"No s'ha pogut completar la subscripció a l'alimentació del perfil remot. " +"Llista de %s no pot desar." + +#. TRANS: Title for unlisting a remote profile. +msgctxt "TITLE" +msgid "Unlist" +msgstr "Sense llistar" + +#. TRANS: Success message for remote list removal through OStatus. +#. TRANS: %1$s is the list creator's name, %2$s is the removed list member, %3$s is the list name. +#, php-format +msgid "%1$s removed %2$s from the list %3$s." +msgstr "%1$stret %2$s de la llista %3$s ." + +#. TRANS: Title for unliking a remote notice. +msgid "Unlike" +msgstr "A diferència de" + +#. TRANS: Success message for remove a favorite notice through OStatus. +#. TRANS: %1$s is the unfavoring user's name, %2$s is URI to the no longer favored notice. +#, php-format +msgid "%1$s no longer likes %2$s." +msgstr "%1$sja no li agrada %2$s ." + +#. TRANS: Link text for link to remote subscribe. +msgid "Remote" +msgstr "Remot" + +#. TRANS: Title for activity. +msgid "Profile update" +msgstr "Actualització del perfil" + +#. TRANS: Ping text for remote profile update through OStatus. +#. TRANS: %s is user that updated their profile. +#, php-format +msgid "%s has updated their profile page." +msgstr "%sha actualitzat la seva pàgina de perfil." + +#. TRANS: Link text for a user to list an OStatus user. +msgid "List" +msgstr "Llista" + +#. TRANS: Plugin description. +msgid "" +"Follow people across social networks that implement OStatus." +msgstr "" +"Seguir les persones a través de xarxes socials que implementen OStatus." + +#. TRANS: Client exception. +msgid "Publishing outside feeds not supported." +msgstr "Publicació fora no alimenta el suport." + +#. TRANS: Client exception. %s is a mode. +#, php-format +msgid "Unrecognized mode \"%s\"." +msgstr "No es reconeix el mode \" %s \"." + +#. TRANS: Client exception. %s is a topic. +#, php-format +msgid "" +"Unsupported hub.topic %s this hub only serves local user and group Atom " +"feeds." +msgstr "" +"Sense suport hub.topic %s aquest grup i Centre únic usuari local de " +"serveix menjars d'Àtom." + +#. TRANS: Client exception. %s is sync or async. +#, php-format +msgid "Invalid hub.verify \"%s\". It must be sync or async." +msgstr "Hub.verify no és vàlida \" %s \". Ha de ser sync o asíncrona." + +#. TRANS: Client exception. %s is the invalid lease value. +#, php-format +msgid "Invalid hub.lease \"%s\". It must be empty or positive integer." +msgstr "Hub.lease no és vàlida \" %s \". Ha de ser un enter positiu o buit." + +#. TRANS: Client exception. %s is the invalid hub secret. +#, php-format +msgid "Invalid hub.secret \"%s\". It must be under 200 bytes." +msgstr "Hub.secret no és vàlida \" %s \". Ha de ser de menys de 200 bytes." + +#. TRANS: Client exception. %s is a feed URL. +#, php-format +msgid "Invalid hub.topic \"%s\". User does not exist." +msgstr "Hub.topic no és vàlida \" %s \". L'usuari no existeix." + +#. TRANS: Client exception. %s is a feed URL. +#, php-format +msgid "Invalid hub.topic \"%s\". Group does not exist." +msgstr "Hub.topic no és vàlida \" %s \". Grup no existeix." + +#. TRANS: Client exception. %s is a feed URL. +#, php-format +msgid "Invalid hub.topic %s; list does not exist." +msgstr "Hub.topic no és vàlid %s ; la llista no existeix." + +#. TRANS: Client exception. +#. TRANS: %1$s is this argument to the method this exception occurs in, %2$s is a URL. +#, php-format +msgid "Invalid URL passed for %1$s: \"%2$s\"" +msgstr "Adreça URL no vàlida passat per %1$s : \" %2$s \"" + +#. TRANS: Client error displayed when trying to list a local object as if it is remote. +msgid "You can use the local list functionality!" +msgstr "Vostè pot utilitzar les funcions de la llista local!" + +#. TRANS: Header for listing a remote object. %s is a remote object's name. +#, php-format +msgid "List %s" +msgstr "Llista %s" + +#. TRANS: Button text to list a remote object. +msgctxt "BUTTON" +msgid "Go" +msgstr "Vés-hi" + +#. TRANS: Field label. +msgid "User nickname" +msgstr "Nom d'usuari" + +#. TRANS: Field title. +msgid "Nickname of the user you want to list." +msgstr "Nom d'usuari de l'usuari que vol a la llista." + +#. TRANS: Field label. +msgid "Profile Account" +msgstr "Compte del perfil" + +#. TRANS: Field title. +msgid "Your account id (for example user@identi.ca)." +msgstr "El seu compte id (per exemple user@identi.ca)." + +#. TRANS: Client error displayed when remote profile could not be looked up. +#. TRANS: Client error. +msgid "Could not look up OStatus account profile." +msgstr "No podia veure el perfil de compte de OStatus." + +#. TRANS: Client error displayed when remote profile address could not be confirmed. +#. TRANS: Client error. +msgid "Could not confirm remote profile address." +msgstr "No s'ha pogut confirmar adreça remota perfil." + +#. TRANS: Title for an OStatus list. +msgid "OStatus list" +msgstr "Llista OStatus" + +#. TRANS: Server exception thrown when referring to a non-existing or empty feed. +msgid "Empty or invalid feed id." +msgstr "Id no vàlida" + +#. TRANS: Server exception. %s is a feed ID. +#, php-format +msgid "Unknown PuSH feed id %s" +msgstr "PuSH desconegut de connexió id%s" + +#. TRANS: Client exception. %s is an invalid feed name. +#, php-format +msgid "Bad hub.topic feed \"%s\"." +msgstr "Bad hub.topic de connexió \" %s \"." + +#. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. +#, php-format +msgid "Bad hub.verify_token %1$s for %2$s." +msgstr "Bad hub.verify_token %1$s per a %2$s ." + +#. TRANS: Client exception. %s is an invalid topic. +#, php-format +msgid "Unexpected subscribe request for %s." +msgstr "Inesperat subscriure's sol. licitud de %s ." + +#. TRANS: Client exception. %s is an invalid topic. +#, php-format +msgid "Unexpected unsubscribe request for %s." +msgstr "Inesperat subscriure's sol. licitud de %s ." + +#. TRANS: Client error displayed when referring to a non-existing user. +#. TRANS: Client error. +msgid "No such user." +msgstr "No existeix l'usuari." + +#. TRANS: Field label for a field that takes an OStatus user address. +msgid "Subscribe to" +msgstr "Subscriviu-vos a" + +#. TRANS: Button text. +#. TRANS: Button text to continue joining a remote list. +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continua" + +#. TRANS: Button text. +msgid "Join" +msgstr "Uneix" + +#. TRANS: Tooltip for button "Join". +msgctxt "BUTTON" +msgid "Join this group" +msgstr "Uniu-vos al grup" + +#. TRANS: Button text. +msgctxt "BUTTON" +msgid "Confirm" +msgstr "Confirma" + +#. TRANS: Tooltip for button "Confirm". +msgid "Subscribe to this user" +msgstr "Subscriviu-vos a l'usuari" + +#. TRANS: Extra paragraph in remote profile view when already subscribed. +msgid "You are already subscribed to this user." +msgstr "Ja esteu subscrit a aquest usuari." + +#. TRANS: Error text. +msgid "" +"Sorry, we could not reach that feed. Please try that OStatus address again " +"later." +msgstr "" +"No hem pogut recuperar el canal. Torneu a provar l'adreça d'OStatus més " +"endavant." + +#. TRANS: OStatus remote subscription dialog error. +#. TRANS: OStatus remote group subscription dialog error. +msgid "Already subscribed!" +msgstr "Ja hi esteu subscrit!" + +#. TRANS: OStatus remote subscription dialog error. +msgid "Remote subscription failed!" +msgstr "La subscripció remota ha fallat!" + +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " +"us plau." + +#. TRANS: Form title. +msgid "Subscribe to user" +msgstr "Subscriu a l'usuari" + +#. TRANS: Page title for OStatus remote subscription form. +msgid "Confirm" +msgstr "Confirma" + +#. TRANS: Instructions. +msgid "" +"You can subscribe to users from other supported sites. Paste their address " +"or profile URI below:" +msgstr "" +"Vostè pot subscriure's als usuaris d'altres llocs de què es dóna suport. " +"Enganxar la seva adreça o perfil URI sota:" + +#. TRANS: Field label. +msgid "Join group" +msgstr "Uneix-te al grup" + +#. TRANS: Tooltip for field label "Join group". Do not translate the "example.net" +#. TRANS: domain name in the URL, as it is an official standard domain name for examples. +msgid "OStatus group's address, like http://example.net/group/nickname." +msgstr "Adreça del grup OStatus, com http://example.net/group/nickname." + +#. TRANS: Error text displayed when trying to join a remote group the user is already a member of. +msgid "You are already a member of this group." +msgstr "Ja sou membre del grup." + +#. TRANS: OStatus remote group subscription dialog error. +msgid "Already a member!" +msgstr "Ja ets un membre!" + +#. TRANS: OStatus remote group subscription dialog error. +msgid "Remote group join failed!" +msgstr "No s'ha pogut unir al grup remot." + +#. TRANS: Page title for OStatus remote group join form +msgid "Confirm joining remote group" +msgstr "Confirma la unió al grup remot" + +#. TRANS: Form instructions. +msgid "" +"You can subscribe to groups from other supported sites. Paste the group's " +"profile URI below:" +msgstr "" +"Vostè pot subscriure's als grups d'altres llocs de què es dóna suport. " +"Enganxa el perfil del grup URI sota:" + +#. TRANS: Client error displayed trying to perform an action without providing an ID. +#. TRANS: Client error. +#. TRANS: Client error displayed trying to perform an action without providing an ID. +msgid "No ID." +msgstr "Sense ID." + +#. TRANS: Client exception thrown when an undefied activity is performed. +#. TRANS: Client exception. +msgid "Cannot handle that kind of post." +msgstr "No pot manejar aquest tipus de missatge." + +#. TRANS: Client exception. +msgid "In reply to unknown notice." +msgstr "En resposta a avís desconegut." + +#. TRANS: Client exception. +msgid "In reply to a notice not by this user and not mentioning this user." +msgstr "En resposta a un avís no per l'usuari i no esmentar aquest usuari." + +#. TRANS: Client exception. +msgid "To the attention of user(s), not including this one." +msgstr "A l'atenció dels usuaris, no incloent-hi aquest." + +#. TRANS: Client exception. +msgid "Not to anyone in reply to anything." +msgstr "No a qualsevol en resposta de qualsevol cosa." + +#. TRANS: Client exception. +msgid "This is already a favorite." +msgstr "Ja és un preferit." + +#. TRANS: Client exception. +msgid "Could not save new favorite." +msgstr "No s'ha pogut desar un preferit nou." + +#. TRANS: Client exception. +msgid "Notice was not favorited!" +msgstr "L'avís no està marcat com preferit!" + +#. TRANS: Client exception. +msgid "Not a person object." +msgstr "No és un objecte de persona." + +#. TRANS: Client exception. +msgid "Unidentified profile being listed." +msgstr "Perfil no identificat llistat." + +#. TRANS: Client exception. +msgid "This user is not the one being listed." +msgstr "Aquest usuari no és el que està llistat." + +#. TRANS: Client exception. +msgid "The listing could not be saved." +msgstr "No s'ha pogut desar el llistat." + +#. TRANS: Client exception. +msgid "Unidentified profile being unlisted." +msgstr "Perfil no identificat al llistat." + +#. TRANS: Client exception. +msgid "This user is not the one being unlisted." +msgstr "Aquest usuari no està al llistat." + +#. TRANS: Client exception. +msgid "The listing could not be deleted." +msgstr "No es pot eliminar el llistat." + +#. TRANS: Client exception. +msgid "Cannot favorite/unfavorite without an object." +msgstr "No pot tindre favorits/no favorits sense un objecte." + +#. TRANS: Client exception. +msgid "Cannot handle that kind of object for liking/faving." +msgstr "No pot manejar aquest tipus d'objecte per a gust/faving." + +#. TRANS: Client exception. %s is an object ID. +#, php-format +msgid "Notice with ID %s unknown." +msgstr "Avís amb ID %s desconegut." + +#. TRANS: Client exception. %1$s is a notice ID, %2$s is a user ID. +#, php-format +msgid "Notice with ID %1$s not posted by %2$s." +msgstr "Avís amb ID %1$s no publicat per %2$s." + +#. TRANS: Field label. +msgid "Subscribe to list" +msgstr "Subscriu a la llista" + +#. TRANS: Field title. +msgid "Address of the OStatus list, like http://example.net/user/all/tag." +msgstr "Adreça de la llista de OStatus, com http://example.net/user/all/tag." + +#. TRANS: Error text displayed when trying to subscribe to a list already a subscriber to. +msgid "You are already subscribed to this list." +msgstr "Ja esteu subscrit a aquesta llista." + +#. TRANS: Page title for OStatus remote list subscription form +msgid "Confirm subscription to remote list" +msgstr "Confirma la subscripció a la llista remota" + +#. TRANS: Instructions for OStatus list subscription form. +msgid "" +"You can subscribe to lists from other supported sites. Paste the list's URI " +"below:" +msgstr "" +"Vostè pot subscriure's als grups d'altres llocs de què es dóna suport. " +"Enganxa el perfil del grup URI sota:" + +#. TRANS: Client error. +msgid "No such group." +msgstr "No existeix el grup." + +#. TRANS: Client error. +msgid "Cannot accept remote posts for a remote group." +msgstr "No es poden acceptar avisos remots d'un grup remot." + +#. TRANS: Client error. +msgid "Cannot read profile to set up group membership." +msgstr "No es pot llegir el perfil per cancel·lar-ne la pertinència." + +#. TRANS: Client error. +#. TRANS: Client error displayed when trying to have a group join another group. +msgid "Groups cannot join groups." +msgstr "Els grups no poden unir-se a grups." + +#. TRANS: Client error displayed when trying to join a group the user is blocked from by a group admin. +msgid "You have been blocked from that group by the admin." +msgstr "L'administrador us ha blocat del grup." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#, php-format +msgid "Could not join remote user %1$s to group %2$s." +msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s." + +#. TRANS: Client error displayed when group membership cannot be cancelled +#. TRANS: because the remote profile could not be read. +msgid "Cannot read profile to cancel group membership." +msgstr "No es pot llegir el perfil per cancel·lar-ne la pertinència." + +#. TRANS: Server error. %1$s is a profile URI, %2$s is a group nickname. +#, php-format +msgid "Could not remove remote user %1$s from group %2$s." +msgstr "No es pot eliminar l'usuari remot %1$s de la llista %2$s." + +#. TRANS: Client error displayed when referring to a non-existing list. +#. TRANS: Client error. +msgid "No such list." +msgstr "No existeix la llista." + +#. TRANS: Client error displayed when trying to send a message to a remote list. +msgid "Cannot accept remote posts for a remote list." +msgstr "No es poden acceptar avisos remots d'un grup remot." + +#. TRANS: Client error displayed when referring to a non-existing remote list. +msgid "Cannot read profile to set up list subscription." +msgstr "" +"No es pot llegir el perfil per posar cap amunt de subscripció a la llista." + +#. TRANS: Client error displayed when trying to subscribe a group to a list. +#. TRANS: Client error displayed when trying to unsubscribe a group from a list. +msgid "Groups cannot subscribe to lists." +msgstr "Els grups no es poden subscriure a les llistes." + +#. TRANS: Server error displayed when subscribing a remote user to a list fails. +#. TRANS: %1$s is a profile URI, %2$s is a list name. +#, php-format +msgid "Could not subscribe remote user %1$s to list %2$s." +msgstr "No es pot subscriure a l'usuari remot %1$s de la llista %2$s." + +#. TRANS: Client error displayed when trying to unsubscribe from non-existing list. +msgid "Cannot read profile to cancel list subscription." +msgstr "" +"No es pot llegir el perfil per posar cap amunt de subscripció a la llista." + +#. TRANS: Client error displayed when trying to unsubscribe a remote user from a list fails. +#. TRANS: %1$s is a profile URL, %2$s is a list name. +#, php-format +msgid "Could not unsubscribe remote user %1$s from list %2$s." +msgstr "No es pot subscriure a l'usuari remot %1$s de la llista %2$s." + +#. TRANS: Client error. +msgid "You can use the local subscription!" +msgstr "Podeu fer servir la subscripció local!" + +#. TRANS: Form title. +msgctxt "TITLE" +msgid "Subscribe to user" +msgstr "Subscriu a l'usuari" + +#. TRANS: Form legend. %s is a group name. +#, php-format +msgid "Join group %s" +msgstr "Uneix al grup %s" + +#. TRANS: Button text to join a group. +msgctxt "BUTTON" +msgid "Join" +msgstr "Inici de sessió" + +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. +#, php-format +msgid "Subscribe to list %1$s by %2$s" +msgstr "Subscriu a la llista %1$s per %2$s" + +#. TRANS: Button text to subscribe to a list. +#. TRANS: Button text to subscribe to a profile. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscriu" + +#. TRANS: Form legend. %s is a nickname. +#, php-format +msgid "Subscribe to %s" +msgstr "Subscriu a %s" + +#. TRANS: Field label. +msgid "Group nickname" +msgstr "Sobrenom del grup" + +#. TRANS: Field title. +msgid "Nickname of the group you want to join." +msgstr "Sobrenom del grup a què voleu unir-vos." + +#. TRANS: Field title. +msgid "Nickname of the user you want to follow." +msgstr "Sobrenom de l'usuari que voleu seguir." + +#. TRANS: Tooltip for field label "Profile Account". +msgid "Your account ID (e.g. user@identi.ca)." +msgstr "El vostre ID de compte (p. ex. usuari@identi.ca)." + +#. TRANS: Client error. +msgid "Must provide a remote profile." +msgstr "Cal proporcionar un perfil remot." + +#. TRANS: Client error. +msgid "No local user or group nickname provided." +msgstr "Cap usuari local o grup sobrenom proporcionat." + +#. TRANS: Page title. +msgid "OStatus Connect" +msgstr "Connecta amb OStatus" + +#. TRANS: Server exception. %s is a URL. +#, php-format +msgid "Invalid avatar URL %s." +msgstr "URL de l'avatar %s no vàlid." + +#. TRANS: Server exception. %s is a URI. +#, php-format +msgid "Tried to update avatar for unsaved remote profile %s." +msgstr "S'ha provat d'actualitzar l'avatar no desat del perfil remot %s." + +#. TRANS: Server exception. %s is a URL. +#, php-format +msgid "Unable to fetch avatar from %s." +msgstr "No s'ha pogut aconseguir l'avatar de %s." + +#. TRANS: Exception. %s is a URL. +#, php-format +msgid "Could not find a feed URL for profile page %s." +msgstr "No es pot trobar un URL del canal de la pàgina del perfil %s." + +#. TRANS: Exception. +msgid "Not a valid webfinger address." +msgstr "No és una adreça de webfinger vàlida." + +#. TRANS: Exception. %s is a webfinger address. +#, php-format +msgid "Could not find a valid profile for \"%s\"." +msgstr "No s'ha pogut trobar un perfil de «%s» vàlid." + +#. TRANS: Server exception. +msgid "Attempting to start PuSH subscription for feed with no hub." +msgstr "" +"S'està intentant iniciar la subscripció d'empenta per a menjar amb cap hub." + +#. TRANS: Server exception. +msgid "Attempting to end PuSH subscription for feed with no hub." +msgstr "" +"S'està intentant iniciar la subscripció d'empenta per a menjar amb cap hub." + +#. TRANS: Server exception. %s is a URI +#, php-format +msgid "Invalid ostatus_profile state: Two or more IDs set for %s." +msgstr "" +"Estat de ostatus_profile no és vàlida: identificadors de dos o més definir " +"per a %s ." + +#. TRANS: Server exception. %s is a URI +#, php-format +msgid "Invalid ostatus_profile state: All IDs empty for %s." +msgstr "Estat de ostatus_profile no és vàlida: els IDs buit per %s ." + +#. TRANS: Server exception. +#. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. +#, php-format +msgid "Invalid actor passed to %1$s: %2$s." +msgstr "Actor no és vàlid, ha passat a %1$s : %2$s ." + +#. TRANS: Server exception. +msgid "" +"Invalid type passed to Ostatus_profile::notify. It must be XML string or " +"Activity entry." +msgstr "" +"Tipus no vàlid passat a Ostatus_profile::notify. Ha de ser XML corda o " +"entrada de l'activitat." + +#. TRANS: Exception. +msgid "Unknown feed format." +msgstr "Format de canal desconegut." + +#. TRANS: Exception. +msgid "RSS feed without a channel." +msgstr "Canal RSS sense un canal." + +#. TRANS: Client exception thrown when trying to share multiple activities at once. +msgid "Can only handle share activities with exactly one object." +msgstr "Només pot manejar compartir activitats amb exactament amb un objecte." + +#. TRANS: Client exception thrown when trying to share a non-activity object. +msgid "Can only handle shared activities." +msgstr "Només es poden gestionar les activitats compartides." + +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. +#, php-format +msgid "Failed to save activity %s." +msgstr "No s'ha pogut desar l'activitat %s." + +#. TRANS: Client exception. %s is a source URI. +#, php-format +msgid "No content for notice %s." +msgstr "No hi ha contingut a l'avís %s." + +#. TRANS: Shown when a notice is longer than supported and/or when attachments are present. At runtime +#. TRANS: this will usually be replaced with localised text from StatusNet core messages. +msgid "Show more" +msgstr "Mostra'n més" + +#. TRANS: Exception. %s is a profile URL. +#, php-format +msgid "Could not reach profile page %s." +msgstr "No es pot arribar a la pàgina del perfil %s." + +#. TRANS: Feed sub exception. +msgid "Cannot find enough profile information to make a feed." +msgstr "" +"No s'ha pogut trobar suficient informació al perfil per generar un canal." + +#. TRANS: Server exception. +msgid "No author ID URI found." +msgstr "No s'ha trobat cap autor ID URI." + +#. TRANS: Exception. +msgid "No profile URI." +msgstr "No hi ha cap URI del perfil." + +#. TRANS: Exception. +msgid "Local user cannot be referenced as remote." +msgstr "L'usuari local no pot fer referència tan remota." + +#. TRANS: Exception. +msgid "Local group cannot be referenced as remote." +msgstr "L'usuari local no pot fer referència tan remota." + +#. TRANS: Exception. +msgid "Local list cannot be referenced as remote." +msgstr "L'usuari local no pot fer referència tan remota." + +#. TRANS: Server exception. +msgid "Cannot save local profile." +msgstr "No es pot desar el perfil local." + +#. TRANS: Server exception. +msgid "Cannot save local list." +msgstr "No es pot desar la llista local." + +#. TRANS: Server exception. +msgid "Cannot save OStatus profile." +msgstr "No es pot desar el perfil local." + +#. TRANS: Exception. %s is a webfinger address. +#, fuzzy, php-format +msgid "Could not save profile for \"%s\"." +msgstr "No es poden desar els detalls de perfil." + +#. TRANS: Exception. %s is a webfinger address. +#, php-format +msgid "Could not save OStatus profile for \"%s\"." +msgstr "No es pot desar el perfil de \"%s\"." + +#. TRANS: Server exception. +msgid "Could not store HTML content of long post as file." +msgstr "No podria emmagatzemar contingut HTML de correu llarg com a fitxer." + +#. TRANS: Server exception. +#. TRANS: %1$s is a protocol, %2$s is a URI. +#, php-format +msgid "Unrecognized URI protocol for profile: %1$s (%2$s)." +msgstr "No reconegut protocol URI per al perfil: %1$s ( %2$s )." + +#. TRANS: Server exception. %s is a URI. +#, php-format +msgid "No URI protocol for profile: %s." +msgstr "Cap protocol URI per al perfil: %s ." + +#. TRANS: Client exception. %s is a HTTP status code. +#, php-format +msgid "Hub subscriber verification returned HTTP %s." +msgstr "Verificació de subscriptor Centre va tornar de HTTP %s ." + +#. TRANS: Exception. %1$s is a response status code, %2$s is the body of the response. +#, php-format +msgid "Callback returned status: %1$s. Body: %2$s" +msgstr "Trucada d'avís va tornar a l'estat: %1$s . Cos:%2$s" + +#. TRANS: Exception. +msgid "Unable to locate signer public key." +msgstr "No es pot localitzar la clau pública signant." + +#. TRANS: Exception. +msgid "Salmon invalid actor for signing." +msgstr "Salmó actor no és vàlid per a la signatura." + +#. TRANS: Client error. POST is a HTTP command. It should not be translated. +msgid "This method requires a POST." +msgstr "Aquest mètode requereix POST." + +#. TRANS: Client error. Do not translate "application/magic-envelope+xml". +msgid "Salmon requires \"application/magic-envelope+xml\"." +msgstr "Salmó requereix \"aplicació/magic-sobres + xml\"." + +#. TRANS: Client error. +msgid "Salmon signature verification failed." +msgstr "Ha fallat la verificació de la signatura de salmó." + +#. TRANS: Client error. +msgid "Salmon post must be an Atom entry." +msgstr "L'enviament Atom ha de ser una entrada Atom." + +#. TRANS: Client exception. +msgid "Unrecognized activity type." +msgstr "Tipus d'activitat no reconegut." + +#. TRANS: Client exception. +msgid "This target does not understand posts." +msgstr "Aquest objectiu no entén llocs." + +#. TRANS: Client exception. +msgid "This target does not understand follows." +msgstr "Aquest objectiu no entén llocs." + +#. TRANS: Client exception. +msgid "This target does not understand unfollows." +msgstr "Aquest objectiu no entén llocs." + +#. TRANS: Client exception. +msgid "This target does not understand favorites." +msgstr "Aquest objectiu no entén llocs." + +#. TRANS: Client exception. +msgid "This target does not understand unfavorites." +msgstr "Aquest objectiu no entén llocs." + +#. TRANS: Client exception. +msgid "This target does not understand share events." +msgstr "Aquest objectiu no entén llocs." + +#. TRANS: Client exception. +msgid "This target does not understand joins." +msgstr "Aquest objectiu no entén llocs." + +#. TRANS: Client exception. +msgid "This target does not understand leave events." +msgstr "Aquest objectiu no entén permís esdeveniments." + +#. TRANS: Client exception. +msgid "This target does not understand list events." +msgstr "Aquest objectiu no entén permís esdeveniments." + +#. TRANS: Client exception. +msgid "This target does not understand unlist events." +msgstr "Aquest objectiu no entén permís esdeveniments." + +#. TRANS: Exception. +msgid "Received a salmon slap from unidentified actor." +msgstr "Va rebre una bufetada salmó de l'actor no identificada." diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index f20a344d63..9b80d15908 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -4,6 +4,7 @@ # Author: Fujnky # Author: Giftpflanze # Author: Michael +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -292,7 +294,6 @@ msgid "List %s" msgstr "" #. TRANS: Button text to list a remote object. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "Ausführen" @@ -302,16 +303,14 @@ msgid "User nickname" msgstr "Benutzername" #. TRANS: Field title. -#, fuzzy msgid "Nickname of the user you want to list." -msgstr "Name des Benutzers, dem du folgen möchtest" +msgstr "Name des Benutzers, dem du folgen möchtest." #. TRANS: Field label. msgid "Profile Account" msgstr "Profil-Konto" #. TRANS: Field title. -#, fuzzy msgid "Your account id (for example user@identi.ca)." msgstr "Deine Konto-ID (z.B. user@identi.ca)." diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 64a1eb534e..fd17675e43 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -5,6 +5,7 @@ # Author: IAlex # Author: Od1n # Author: Peter17 +# Author: Valeryan 24 # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -13,13 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -154,7 +156,7 @@ msgstr "%1$s a cessé de suivre %2$s par %3$s." #. TRANS: Title for listing a remote profile. msgctxt "TITLE" msgid "List" -msgstr "" +msgstr "Liste" #. TRANS: Success message for remote list addition through OStatus. #. TRANS: %1$s is the list creator's name, %2$s is the added list member, %3$s is the list name. diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 7b0ce0c5c4..73a9622514 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po index 525536a71d..33d16a2c8a 100644 --- a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:07+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 736bdd9971..04c3ae7553 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 9a471df7a8..d8966224e2 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po index 653664842f..0d2df6245d 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index bf42ad0acc..8702e092ff 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-09-11 15:10:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" diff --git a/plugins/OfflineBackup/OfflineBackupPlugin.php b/plugins/OfflineBackup/OfflineBackupPlugin.php new file mode 100644 index 0000000000..a7bede2875 --- /dev/null +++ b/plugins/OfflineBackup/OfflineBackupPlugin.php @@ -0,0 +1,101 @@ +. + * + * @category Backup + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Offline backup + * + * Instead of a big + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class OfflineBackupPlugin extends Plugin +{ + function onAutoload($cls) + { + $dir = dirname(__FILE__); + + switch ($cls) + { + case 'OfflinebackupAction': + include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; + return false; + case 'OfflineBackupQueueHandler': + include_once $dir . '/'.strtolower($cls).'.php'; + return false; + default: + return true; + } + } + + function onRouterInitialized($m) + { + $m->connect('main/backupaccount', + array('action' => 'offlinebackup')); + return true; + } + + /** + * Add our queue handler to the queue manager + * + * @param QueueManager $qm current queue manager + * + * @return boolean hook value + */ + + function onEndInitializeQueueManager($qm) + { + $qm->connect('backoff', 'OfflineBackupQueueHandler'); + return true; + } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'OfflineBackup', + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:OfflineBackup', + 'rawdescription' => + // TRANS: Plugin description. + _m('Backup user data in offline queue and email when ready.')); + return true; + } +} diff --git a/plugins/OfflineBackup/locale/OfflineBackup.pot b/plugins/OfflineBackup/locale/OfflineBackup.pot new file mode 100644 index 0000000000..69612eda01 --- /dev/null +++ b/plugins/OfflineBackup/locale/OfflineBackup.pot @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: offlinebackupqueuehandler.php:105 +#, php-format +msgctxt "" +"The backup file you requested is ready for download.\n" +"\n" +"%s\n" +"Thanks for your time,\n" +msgid "%s\n" +msgstr "" + +#. TRANS: Plugin description. +#: OfflineBackupPlugin.php:98 +msgid "Backup user data in offline queue and email when ready." +msgstr "" diff --git a/plugins/OfflineBackup/offlinebackup.php b/plugins/OfflineBackup/offlinebackup.php new file mode 100644 index 0000000000..a9c64ca49a --- /dev/null +++ b/plugins/OfflineBackup/offlinebackup.php @@ -0,0 +1,87 @@ +. + * + * @category Offline backup + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Action to initiate an offline backup + * + * @category Offline backup + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class OfflinebackupAction extends BackupaccountAction +{ + /** + * Handler method + * + * @param array $argarray is ignored since it's now passed in in prepare() + * + * @return void + */ + + function handle($argarray=null) + { + if ($this->isPost()) { + $this->queueBackup(); + } else { + $this->showPage(); + } + return; + } + + function queueBackup() + { + $cur = common_current_user(); + + $qm = QueueManager::get(); + + $qm->enqueue($cur->id, 'backoff'); + + $this->showPage(); + } + + function showContent() + { + if ($this->isPost()) { + $this->text(_('Backup queued. You will get a notification by email when your backup is ready to download.')); + } else { + parent::showContent(); + } + } +} diff --git a/plugins/OfflineBackup/offlinebackupqueuehandler.php b/plugins/OfflineBackup/offlinebackupqueuehandler.php new file mode 100644 index 0000000000..2de6c9a667 --- /dev/null +++ b/plugins/OfflineBackup/offlinebackupqueuehandler.php @@ -0,0 +1,327 @@ +. + * + * @category Offline backup + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + // This check helps protect against security problems; + // your code file can't be executed directly from the web. + exit(1); +} + +/** + * Offline backup queue handler + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class OfflineBackupQueueHandler extends QueueHandler +{ + function transport() + { + return 'backoff'; + } + + function handle($object) + { + $userId = $object; + + $user = User::staticGet($userId); + + common_log(LOG_INFO, "Making backup file for user ".$user->nickname); + + $fileName = $this->makeBackupFile($user); + + common_log(LOG_INFO, "Notifying user ".$user->nickname . " of their new backup file."); + + $this->notifyBackupFile($user, $fileName); + + return true; + } + + function makeBackupFile($user) + { + // XXX: this is pretty lose-y; try another way + + $tmpdir = sys_get_temp_dir() . '/offline-backup/' . $user->nickname . '/' . common_date_iso8601(common_sql_now()); + + common_log(LOG_INFO, 'Writing backup data to ' . $tmpdir . ' for ' . $user->nickname); + + mkdir($tmpdir, 0700, true); + + $this->dumpNotices($user, $tmpdir); + $this->dumpFaves($user, $tmpdir); + $this->dumpSubscriptions($user, $tmpdir); + $this->dumpSubscribers($user, $tmpdir); + $this->dumpGroups($user, $tmpdir); + + $fileName = File::filename($user->getProfile(), "backup", "application/atom+xml"); + $fullPath = File::path($fileName); + + $this->makeActivityFeed($user, $tmpdir, $fullPath); + + $this->delTree($tmpdir); + + return $fileName; + } + + function notifyBackupFile($user, $fileName) + { + $fileUrl = File::url($fileName); + + $body = sprintf(_m("The backup file you requested is ready for download.\n\n". + "%s\n". + "Thanks for your time,\n", + "%s\n"), + $fileUrl, + common_config('site', 'name')); + + $headers = _mail_prepare_headers('offlinebackup', $user->nickname, $user->nickname); + + mail_to_user($user, _('Backup file ready for download'), $body, $headers); + } + + function dumpNotices($user, $dir) + { + common_log(LOG_INFO, 'dumping notices by ' . $user->nickname . ' to directory ' . $dir); + + $profile = $user->getProfile(); + + $stream = new ProfileNoticeStream($profile, $profile); + + $page = 1; + + do { + + $notice = $stream->getNotices(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); + + while ($notice->fetch()) { + try { + $fname = $dir . '/'. common_date_iso8601($notice->created) . '-notice-' . $notice->id . '.atom'; + $data = $notice->asAtomEntry(false, false, false, null); + common_log(LOG_INFO, 'dumping notice ' . $notice->id . ' to file ' . $fname); + file_put_contents($fname, $data); + $data = null; + } catch (Exception $e) { + common_log(LOG_ERR, "Error backing up notice " . $notice->id . ": " . $e->getMessage()); + continue; + } + } + + $page++; + + } while ($notice->N > NOTICES_PER_PAGE); + } + + function dumpFaves($user, $dir) + { + common_log(LOG_INFO, 'dumping faves by ' . $user->nickname . ' to directory ' . $dir); + + $page = 1; + + do { + $fave = Fave::byProfile($user->id, ($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); + + while ($fave->fetch()) { + try { + $fname = $dir . '/'. common_date_iso8601($fave->modified) . '-fave-' . $fave->notice_id . '.atom'; + $act = $fave->asActivity(); + $data = $act->asString(false, false, false); + common_log(LOG_INFO, 'dumping fave of ' . $fave->notice_id . ' to file ' . $fname); + file_put_contents($fname, $data); + $data = null; + } catch (Exception $e) { + common_log(LOG_ERR, "Error backing up fave of " . $fave->notice_id . ": " . $e->getMessage()); + continue; + } + } + + $page++; + + } while ($fave->N > NOTICES_PER_PAGE); + } + + function dumpSubscriptions($user, $dir) + { + common_log(LOG_INFO, 'dumping subscriptions by ' . $user->nickname . ' to directory ' . $dir); + + $page = 1; + + do { + $sub = Subscription::bySubscriber($user->id, ($page-1)*PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1); + + while ($sub->fetch()) { + try { + if ($sub->subscribed == $user->id) { + continue; + } + $fname = $dir . '/'. common_date_iso8601($sub->created) . '-subscription-' . $sub->subscribed . '.atom'; + $act = $sub->asActivity(); + $data = $act->asString(false, false, false); + common_log(LOG_INFO, 'dumping sub of ' . $sub->subscribed . ' to file ' . $fname); + file_put_contents($fname, $data); + $data = null; + } catch (Exception $e) { + common_log(LOG_ERR, "Error backing up subscription to " . $sub->subscribed . ": " . $e->getMessage()); + continue; + } + } + + $page++; + + } while ($sub->N > PROFILES_PER_PAGE); + } + + function dumpSubscribers($user, $dir) + { + common_log(LOG_INFO, 'dumping subscribers to ' . $user->nickname . ' to directory ' . $dir); + + $page = 1; + + do { + $sub = Subscription::bySubscribed($user->id, ($page-1)*PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1); + + while ($sub->fetch()) { + try { + if ($sub->subscriber == $user->id) { + continue; + } + $fname = $dir . '/'. common_date_iso8601($sub->created) . '-subscriber-' . $sub->subscriber . '.atom'; + $act = $sub->asActivity(); + $data = $act->asString(false, true, false); + common_log(LOG_INFO, 'dumping sub by ' . $sub->subscriber . ' to file ' . $fname); + file_put_contents($fname, $data); + $data = null; + } catch (Exception $e) { + common_log(LOG_ERR, "Error backing up subscription from " . $sub->subscriber . ": " . $e->getMessage()); + continue; + } + } + + $page++; + + } while ($sub->N > PROFILES_PER_PAGE); + } + + function dumpGroups($user, $dir) + { + common_log(LOG_INFO, 'dumping memberships of ' . $user->nickname . ' to directory ' . $dir); + + $page = 1; + + do { + + $mem = Group_member::byMember($user->id, ($page-1)*GROUPS_PER_PAGE, GROUPS_PER_PAGE + 1); + + while ($mem->fetch()) { + try { + $fname = $dir . '/'. common_date_iso8601($mem->created) . '-membership-' . $mem->group_id . '.atom'; + $act = $mem->asActivity(); + $data = $act->asString(false, false, false); + common_log(LOG_INFO, 'dumping membership in ' . $mem->group_id . ' to file ' . $fname); + file_put_contents($fname, $data); + $data = null; + } catch (Exception $e) { + common_log(LOG_ERR, "Error backing up membership in " . $mem->group_id . ": " . $e->getMessage()); + continue; + } + } + + $page++; + + } while ($mem->N > GROUPS_PER_PAGE); + } + + function makeActivityFeed($user, $tmpdir, $fullPath) + { + $handle = fopen($fullPath, 'c'); + + $this->writeFeedHeader($user, $handle); + + $objects = scandir($tmpdir); + + rsort($objects); + + foreach ($objects as $object) { + $objFull = $tmpdir . '/' . $object; + if (!is_dir($objFull)) { + $entry = file_get_contents($objFull); + fwrite($handle, $entry); + $entry = null; + } + } + + $this->writeFeedFooter($user, $handle); + fclose($handle); + } + + function writeFeedHeader($user, $handle) + { + fwrite($handle, ''); + fwrite($handle, "\n"); + fwrite($handle, ''); + fwrite($handle, "\n"); + + $profile = $user->getProfile(); + + $author = ActivityObject::fromProfile($profile); + + $xs = new XMLStringer(); + $author->outputTo($xs, 'author'); + fwrite($handle, $xs->getString()); + fwrite($handle, "\n"); + } + + function writeFeedFooter($user, $handle) + { + fwrite($handle, ''); + } + + function delTree($dir) + { + if (is_dir($dir)) { + $objects = scandir($dir); + foreach ($objects as $object) { + if ($object != "." && $object != "..") { + if (filetype($dir."/".$object) == "dir") { + $this->delTree($dir."/".$object); + } else { + unlink($dir."/".$object); + } + } + } + reset($objects); + rmdir($dir); + } + } +} diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index a51ada8d81..5cb52d2123 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 63493d1bfb..8f78cae8d5 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:38+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po index 9d7a479c33..b061fcaa99 100644 --- a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\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 e5d877bbda..090fc835e3 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 576d1a964c..2899325d6d 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b69f2a21f3..9253302d1e 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po new file mode 100644 index 0000000000..82b4a1d1fc --- /dev/null +++ b/plugins/OpenExternalLinkTarget/locale/gl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - OpenExternalLinkTarget to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:39+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Opens external links (i.e. with rel=external) on a new window or tab." +msgstr "" +"Abre ligazóns externas (por exemplo, con rel=external) nunha nova fiestra ou " +"lapela." diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 651e5ba9bd..6915efa240 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 274756d396..28844da788 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bf332e16e1..a36ef9eaaf 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0a18242d94..9f836f048b 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6a95a52dfe..a107d20e06 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3b8d2d1039..803f08a351 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f905eaa235..93ca12f30c 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 381edaa4fa..3289e96c51 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a45f0c92b7..c058d514c5 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f76b2a376b..f8c5c01aa6 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,14 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:40+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index 023ff8e86d..ed6d6534c0 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -536,15 +536,12 @@ class OpenIDPlugin extends Plugin * * @return boolean hook value */ - function onEndLoadDoc($title, &$output) - { - if ($title == 'help') { - // TRANS: Item on help page. This message contains Markdown links in the form [description](link). - $menuitem = _m('* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this service.'); - - $output .= common_markup_to_html($menuitem); - } - + function onEndDocsMenu(&$items) { + $items[] = array('doc', + array('title' => 'openid'), + _m('MENU', 'OpenID'), + _('Logging in with OpenID'), + 'nav_doc_openid'); return true; } diff --git a/plugins/OpenID/doc-src/openid b/plugins/OpenID/doc-src/openid index f2dc610a55..08768fb716 100644 --- a/plugins/OpenID/doc-src/openid +++ b/plugins/OpenID/doc-src/openid @@ -3,9 +3,9 @@ If you already have an account on %%site.name%%, you can [login](%%action.login%%) with your username and password as usual. To use OpenID in the future, you can [add an OpenID to your account](%%action.openidsettings%%) after you have logged in normally. -There are many [Public OpenID providers](http://wiki.openid.net/OpenID-Providers), and you may already have an OpenID-enabled account on another service. +There are many [Public OpenID providers](http://openid.net/get-an-openid/), and you may already have an OpenID-enabled account on another service. -* On wikis: If you have an account on an OpenID-enabled wiki, like [Wikitravel](http://wikitravel.org/), [wikiHow](http://www.wikihow.com/), [Vinismo](http://vinismo.com/), [AboutUs](http://aboutus.org/) or [Keiki](http://kei.ki/), you can log in to %%site.name%% by entering the **full URL** of your user page on that other wiki in the box above. For example, *http://kei.ki/en/User:Evan*. -* [Yahoo!](http://openid.yahoo.com/) : If you have an account with Yahoo!, you can log in to this site by entering your Yahoo!-provided OpenID in the box above. Yahoo! OpenID URLs have the form *https://me.yahoo.com/yourusername*. -* [AOL](http://dev.aol.com/aol-and-63-million-openids) : If you have an account with [AOL](http://www.aol.com/), like an [AIM](http://www.aim.com/) account, you can log in to %%site.name%% by entering your AOL-provided OpenID in the box above. AOL OpenID URLs have the form *http://openid.aol.com/yourusername*. Your username should be all lowercase, no spaces. -* [Blogger](http://bloggerindraft.blogspot.com/2008/01/new-feature-blogger-as-openid-provider.html), [Wordpress.com](http://faq.wordpress.com/2007/03/06/what-is-openid/), [LiveJournal](http://www.livejournal.com/openid/about.bml), [Vox](http://bradfitz.vox.com/library/post/openid-for-vox.html) : If you have a blog on any of these services, enter your blog URL in the box above. For example, *http://yourusername.blogspot.com/*, *http://yourusername.wordpress.com/*, *http://yourusername.livejournal.com/*, or *http://yourusername.vox.com/*. +* [Google](http://www.google.com/) : If you have a Google profile, you can log in to this site by entering your profile URL. +* [Yahoo!](http://openid.yahoo.com/) : If you have an account with Yahoo!, you can log in to this site by entering your Yahoo!-provided OpenID. Yahoo! OpenID URLs have the form *https://me.yahoo.com/yourusername*. +* [AOL](http://dev.aol.com/aol-and-63-million-openids) : If you have an account with [AOL](http://www.aol.com/), like an [AIM](http://www.aim.com/) account, you can log in to %%site.name%% by entering your AOL-provided OpenID. AOL OpenID URLs have the form *http://openid.aol.com/yourusername*. Your username should be all lowercase, no spaces. +* [Blogger](http://bloggerindraft.blogspot.com/2008/01/new-feature-blogger-as-openid-provider.html), [Wordpress.com](http://faq.wordpress.com/2007/03/06/what-is-openid/), [LiveJournal](http://www.livejournal.com/openid/about.bml): If you have a blog on any of these services, enter your blog URL in the box above. For example, *http://yourusername.blogspot.com/*, *http://yourusername.wordpress.com/*, *http://yourusername.livejournal.com/*, or *http://yourusername.vox.com/*. diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 8be06ca790..6a31444a93 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,7 +37,7 @@ msgstr "" #. TRANS: Button text to continue OpenID identity verification. #. TRANS: button label for OAuth authorization page when needing OpenID authentication first. -#: openidtrust.php:136 OpenIDPlugin.php:698 +#: openidtrust.php:136 OpenIDPlugin.php:695 msgctxt "BUTTON" msgid "Continue" msgstr "" @@ -92,7 +92,8 @@ msgstr "" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. #. TRANS: OpenID configuration menu item. -#: OpenIDPlugin.php:296 OpenIDPlugin.php:332 OpenIDPlugin.php:640 +#: OpenIDPlugin.php:296 OpenIDPlugin.php:332 OpenIDPlugin.php:542 +#: OpenIDPlugin.php:637 msgctxt "MENU" msgid "OpenID" msgstr "" @@ -134,55 +135,47 @@ msgid "" "openidlogin%%)!)" msgstr "" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#: OpenIDPlugin.php:543 -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" - #. TRANS: Tooltip for OpenID configuration menu item. -#: OpenIDPlugin.php:642 +#: OpenIDPlugin.php:639 msgid "OpenID configuration." msgstr "" #. TRANS: Plugin description. -#: OpenIDPlugin.php:688 +#: OpenIDPlugin.php:685 msgid "Use OpenID to login to the site." msgstr "" #. TRANS: OpenID plugin logon form legend. -#: OpenIDPlugin.php:715 openidlogin.php:132 +#: OpenIDPlugin.php:712 openidlogin.php:132 msgctxt "LEGEND" msgid "OpenID login" msgstr "" #. TRANS: Field label. -#: OpenIDPlugin.php:723 +#: OpenIDPlugin.php:720 msgid "OpenID provider" msgstr "" #. TRANS: Form guide. -#: OpenIDPlugin.php:732 openidlogin.php:149 +#: OpenIDPlugin.php:729 openidlogin.php:149 msgid "Enter your username." msgstr "" #. TRANS: Form guide. -#: OpenIDPlugin.php:734 openidlogin.php:151 +#: OpenIDPlugin.php:731 openidlogin.php:151 msgid "You will be sent to the provider's site for authentication." msgstr "" #. TRANS: OpenID plugin logon form field label. #. TRANS: Field label. #. TRANS: OpenID plugin logon form field label. -#: OpenIDPlugin.php:738 openidsettings.php:110 openidlogin.php:155 +#: OpenIDPlugin.php:735 openidsettings.php:110 openidlogin.php:155 msgid "OpenID URL" msgstr "" #. TRANS: OpenID plugin logon form field instructions. #. TRANS: OpenID plugin logon form field title. -#: OpenIDPlugin.php:741 openidlogin.php:158 +#: OpenIDPlugin.php:738 openidlogin.php:158 msgid "Your OpenID URL." msgstr "" diff --git a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po index b187588bc7..360f0734d3 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:37+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:47+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -31,8 +32,7 @@ msgstr "التحقق من الهوية المفتوحة" #. TRANS: Client error when visiting page directly. msgid "" "This page should only be reached during OpenID processing, not directly." -msgstr "" -"يجب أن يتم الوصول إلى هذه الصفحة أثناء معالجة الهوية المفتوحة وليس مباشرة." +msgstr "يجب الوصول إلى هذه الصفحة أثناء معالجة الهوية المفتوحة وليس مباشرة." #. TRANS: Page notice. %s is a trustroot name. #, php-format @@ -132,15 +132,6 @@ msgstr "" "(ألديك [هوية مفتوحة](http://openid.net/)؟ جرب [الولوج بالهوية المفتوحة](%%" "action.openidlogin%%)!)" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" -"* [الهوية المفتوحة](%%doc.openid%%) - تعرف على الهوية المفتوحة وكيفية " -"استخدامها على هذه الخدمة." - #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." msgstr "ضبط الهوية المفتوحة." @@ -568,7 +559,7 @@ msgstr "" #. TRANS: Form validation error for a non-existing OpenID. msgid "No such OpenID." -msgstr "لا هوية مفتوحة كهذه." +msgstr "الهوية المفتوحة المقصودة غير موجودة." #. TRANS: Form validation error if OpenID is connected to another user. msgid "That OpenID does not belong to you." diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index f1372a918f..6562025754 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:37+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:47+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -33,12 +34,12 @@ msgstr "" "l'OpenID, no directament." #. TRANS: Page notice. %s is a trustroot name. -#, fuzzy, php-format +#, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your identity " "and login without creating a new password." msgstr "" -"%s us ha demanat verificar la identitat. Feu clic a Continuar per verificar " +"%s us ha demanat verificar la identitat. Feu clic a Continua per verificar " "la vostra identitat i iniciar una sessió sense crear cap contrasenya nova." #. TRANS: Button text to continue OpenID identity verification. @@ -48,7 +49,6 @@ msgid "Continue" msgstr "Continua" #. TRANS: Button text to cancel OpenID identity verification. -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "Cancel·la" @@ -58,10 +58,9 @@ msgid "Unavailable action." msgstr "Acció no disponible." #. TRANS: Tooltip for main menu option "Login" -#, fuzzy msgctxt "TOOLTIP" msgid "Login to the site." -msgstr "Inicia una sessió al lloc" +msgstr "Inicia una sessió al lloc." #. TRANS: Main menu option when not logged in to log in msgctxt "MENU" @@ -79,10 +78,9 @@ msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text." -msgstr "Cerca gent o un text" +msgstr "Cerca gent o un text." #. TRANS: Main menu option when logged in or when the StatusNet instance is not private msgctxt "MENU" @@ -97,14 +95,12 @@ msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#, fuzzy msgid "Login or register with OpenID." -msgstr "Inici de sessió o registre amb OpenID" +msgstr "Inici de sessió o registre amb OpenID." #. TRANS: OpenID plugin tooltip for user settings menu item. -#, fuzzy msgid "Add or remove OpenIDs." -msgstr "Afegeix o suprimeix connexions OpenID" +msgstr "Afegeix o elimina connexions OpenID." #. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -113,6 +109,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" "action.openidsettings%%)!" msgstr "" +"(Teniu un [OpenID](http://openid.net/)? [Afegeix una connexió OpenID al " +"vostre compte](%%action.openidsettings%%)!" #. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -121,6 +119,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" "action.openidlogin%%)!)" msgstr "" +"(Teniu un [OpenID](http://openid.net/)? Proveu el nostre [registre OpenID](%%" +"action.openidlogin%%)!)" #. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -129,18 +129,12 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." "openidlogin%%)!)" msgstr "" - -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" +"(Teniu un [OpenID](http://openid.net/)? Proveu el nostre [inici de sessió " +"amb OpenID](%%action.openidlogin%%)!)" #. TRANS: Tooltip for OpenID configuration menu item. -#, fuzzy msgid "OpenID configuration." -msgstr "Configuració de l'OpenID" +msgstr "Configuració de l'OpenID." #. TRANS: Plugin description. msgid "Use OpenID to login to the site." @@ -148,7 +142,6 @@ msgstr "" "Fa servir OpenID per connectar-se al lloc." #. TRANS: OpenID plugin logon form legend. -#, fuzzy msgctxt "LEGEND" msgid "OpenID login" msgstr "Inici de sessió amb OpenID" @@ -173,9 +166,8 @@ msgstr "URL de la connexió OpenID" #. TRANS: OpenID plugin logon form field instructions. #. TRANS: OpenID plugin logon form field title. -#, fuzzy msgid "Your OpenID URL." -msgstr "L'URL del vostre OpenID" +msgstr "L'URL del vostre OpenID." #. TRANS: Client error message trying to log on with OpenID while already logged on. msgid "Already logged in." @@ -188,7 +180,6 @@ msgstr "" "S'ha produït un problema amb el vostre testimoni de sessió. Proveu-ho de nou." #. TRANS: Message given if user does not agree with the site's license. -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "No podeu registrar-vos-hi si no accepteu la llicència." @@ -198,7 +189,7 @@ msgstr "S'ha produït un error desconegut." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#, fuzzy, php-format +#, php-format msgid "" "This is the first time you have logged into %s so we must connect your " "OpenID to a local account. You can either create a new account, or connect " @@ -209,7 +200,6 @@ msgstr "" "connectar-vos-hi amb un compte ja existent si en teniu un." #. TRANS: Title -#, fuzzy msgctxt "TITLE" msgid "OpenID Account Setup" msgstr "Configuració del compte OpenID" @@ -228,7 +218,7 @@ msgstr "Nou sobrenom" #. TRANS: Field title. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "" +msgstr "1-64 lletres en minúscules o nombres, sense puntuacions o espais." #. TRANS: Field label. msgid "Email" @@ -247,6 +237,9 @@ msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." msgstr "" +"El meu text i fitxers estan disponibles sota %s excepte pel que fa aquestes " +"dades privades: contrasenya, adreça electrònica, adreça de MI i número de " +"telèfon." #. TRANS: Button label in form in which to create a new user on the site for an OpenID. msgctxt "BUTTON" @@ -285,17 +278,16 @@ msgstr "S'ha cancel·lat l'autenticació OpenID." #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#, fuzzy, php-format +#, php-format msgid "OpenID authentication failed: %s." -msgstr "Ha fallat l'autenticació OpenID: %s" +msgstr "Ha fallat l'autenticació OpenID: %s." #. TRANS: Message displayed when OpenID authentication is aborted. #. TRANS: OpenID authentication error. -#, fuzzy msgid "" "OpenID authentication aborted: You are not allowed to login to this site." msgstr "" -"S'ha interromput l'autenticació OpenD: no teniu permisos per iniciar una " +"S'ha interromput l'autenticació OpenID: no teniu permisos per iniciar una " "sessió en aquest lloc." #. TRANS: OpenID plugin message. No new user registration is allowed on the site. @@ -343,15 +335,15 @@ msgstr "No és un OpenID vàlid." #. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. #. TRANS: %s is the failure message. -#, fuzzy, php-format +#, php-format msgid "OpenID failure: %s." -msgstr "Fallada de l'OpenID: %s" +msgstr "Fallada de l'OpenID: %s." #. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. #. TRANS: %s is the failure message. -#, fuzzy, php-format +#, php-format msgid "Could not redirect to server: %s." -msgstr "No es pot redirigir al servidor: %s" +msgstr "No s'ha pogut redirigir al servidor: %s." #. TRANS: OpenID plugin user instructions. msgid "" @@ -391,7 +383,6 @@ msgstr "" "proveu de prémer el botó de sota." #. TRANS: Title for OpenID bridge administration page. -#, fuzzy msgctxt "TITLE" msgid "OpenID Settings" msgstr "Paràmetres de l'OpenID" @@ -493,16 +484,14 @@ msgid "Error connecting user." msgstr "S'ha produït un error en connectar l'usuari" #. TRANS: Message in case the user or the user profile cannot be saved in StatusNet. -#, fuzzy msgid "Error updating profile." -msgstr "S'ha produït un error en actualitzar el perfil" +msgstr "S'ha produït un error en actualitzar el perfil." #. TRANS: Title after getting the status of the OpenID authorisation request. msgid "OpenID Login" msgstr "Inici de sessió amb OpenID" #. TRANS: Title of OpenID settings page for a user. -#, fuzzy msgctxt "TITLE" msgid "OpenID settings" msgstr "Paràmetres de l'OpenID" @@ -519,7 +508,6 @@ msgstr "" "des d'aquí." #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Add OpenID" msgstr "Afegeix una connexió OpenID" @@ -538,10 +526,9 @@ msgid "Add" msgstr "Afegeix" #. TRANS: Header on OpenID settings page. -#, fuzzy msgctxt "HEADER" msgid "Remove OpenID" -msgstr "Suprimeix la connexió OpenID" +msgstr "Elinina la connexió OpenID" #. TRANS: Form guide. msgid "" @@ -561,10 +548,9 @@ msgstr "" #. TRANS: Button text to remove an OpenID. #. TRANS: Button text to remove an OpenID trustroot. -#, fuzzy msgctxt "BUTTON" msgid "Remove" -msgstr "Suprimeix" +msgstr "Elimina" #. TRANS: Fieldset legend. msgid "OpenID Trusted Sites" @@ -577,7 +563,6 @@ msgid "" msgstr "" #. TRANS: Form validation error if no OpenID providers can be added. -#, fuzzy msgid "Cannot add new providers." msgstr "No es poden afegir proveïdors nous." diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index fe33edfeac..924ab65bd5 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -8,6 +8,7 @@ # Author: Inkowik # Author: MF-Warburg # Author: The Evil IP address +# Author: Tiin # Author: Xqt # -- # This file is distributed under the same license as the StatusNet package. @@ -16,13 +17,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:37+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -40,7 +42,7 @@ msgstr "" "nicht direkt." #. TRANS: Page notice. %s is a trustroot name. -#, fuzzy, php-format +#, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your identity " "and login without creating a new password." @@ -106,9 +108,8 @@ msgid "Login or register with OpenID." msgstr "Anmelden oder Registrieren mit OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#, fuzzy msgid "Add or remove OpenIDs." -msgstr "Hinzufügen oder Entfernen von OpenIDs" +msgstr "Hinzufügen oder Entfernen von OpenIDs." #. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -117,6 +118,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" "action.openidsettings%%)!" msgstr "" +"(Besitzt du eine [OpenID](http://openid.net/)? [Füge eine OpenID zu deinem " +"Account hinzu](%%action.openidsettings%%)!" #. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -125,6 +128,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" "action.openidlogin%%)!)" msgstr "" +"(Besitzt du eine [OpenID](http://openid.net/)? Teste unsere [OpenID-" +"Registrierung](%%action.openidlogin%%)!)" #. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -133,13 +138,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." "openidlogin%%)!)" msgstr "" - -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" +"(Besitzt du eine [OpenID](http://openid.net/)? Teste unsere [OpenID-" +"Anmeldung](%%action.openidlogin%%)!)" #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." @@ -191,7 +191,6 @@ msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #. TRANS: Message given if user does not agree with the site's license. -#, fuzzy msgid "You cannot register if you do not agree to the license." msgstr "" "Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." @@ -202,7 +201,7 @@ msgstr "Ein unbekannter Fehler ist aufgetreten." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. -#, fuzzy, php-format +#, php-format msgid "" "This is the first time you have logged into %s so we must connect your " "OpenID to a local account. You can either create a new account, or connect " @@ -211,10 +210,9 @@ msgstr "" "Dies ist das erste Mal, dass du dich auf %s anmeldest, sodass wir deine " "OpenID mit einem lokalen Benutzerkonto verbinden müssen. Du kannst entweder " "ein neues Benutzerkonto erstellen oder dich mit deinem existierendem " -"Benutzerkonto verbinden." +"Benutzerkonto verbinden, wenn du eines hast." #. TRANS: Title -#, fuzzy msgctxt "TITLE" msgid "OpenID Account Setup" msgstr "OpenID Konto-Setup" @@ -298,11 +296,10 @@ msgstr "OpenID-Authentifizierung ist gescheitert: %s" #. TRANS: Message displayed when OpenID authentication is aborted. #. TRANS: OpenID authentication error. -#, fuzzy msgid "" "OpenID authentication aborted: You are not allowed to login to this site." msgstr "" -"OpenID-Authentifizierung abgebrochen: du darfst dich nicht auf dieser Seite " +"OpenID-Authentifizierung abgebrochen: Du darfst dich nicht auf dieser Seite " "anmelden." #. TRANS: OpenID plugin message. No new user registration is allowed on the site. @@ -350,15 +347,15 @@ msgstr "Keine gültige OpenID." #. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. #. TRANS: %s is the failure message. -#, fuzzy, php-format +#, php-format msgid "OpenID failure: %s." -msgstr "OpenId-Fehler: %s" +msgstr "OpenID-Fehler: %s." #. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. #. TRANS: %s is the failure message. -#, fuzzy, php-format +#, php-format msgid "Could not redirect to server: %s." -msgstr "Konnte keine Verbindung zum Server erstellen: %s" +msgstr "Konnte keine Verbindung zum Server erstellen: %s." #. TRANS: OpenID plugin user instructions. msgid "" @@ -407,17 +404,14 @@ msgid "OpenID settings" msgstr "OpenID-Einstellungen" #. TRANS: Client error displayed when OpenID provider URL is too long. -#, fuzzy msgid "Invalid provider URL. Maximum length is 255 characters." msgstr "Ungültige Provider-URL. Maximale Länge beträgt 255 Zeichen." #. TRANS: Client error displayed when Launchpad team name is too long. -#, fuzzy msgid "Invalid team name. Maximum length is 255 characters." -msgstr "Ungültiger Teamnamen. Maximale Länge beträgt 255 Zeichen." +msgstr "Ungültiger Teamname. Maximale Länge beträgt 255 Zeichen." #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Trusted provider" msgstr "Vertrauenswürdiger Provider" @@ -510,9 +504,8 @@ msgid "Error connecting user." msgstr "Fehler beim Verbinden des Benutzers." #. TRANS: Message in case the user or the user profile cannot be saved in StatusNet. -#, fuzzy msgid "Error updating profile." -msgstr "Fehler beim Aktualisieren des Profils" +msgstr "Fehler beim Aktualisieren des Profils." #. TRANS: Title after getting the status of the OpenID authorisation request. msgid "OpenID Login" @@ -592,9 +585,8 @@ msgstr "" "den Zugriff auf deine OpenID zu verweigern." #. TRANS: Form validation error if no OpenID providers can be added. -#, fuzzy msgid "Cannot add new providers." -msgstr "Kann keine neuen Provider hinzufügen" +msgstr "Kann keine neuen Provider hinzufügen." #. TRANS: Unexpected form validation error. msgid "Something weird happened." @@ -605,9 +597,8 @@ msgid "No such OpenID trustroot." msgstr "Keine solche OpenID trustroot." #. TRANS: Success message after removing trustroots. -#, fuzzy msgid "Trustroots removed." -msgstr "Trustroots entfernt" +msgstr "Trustroots entfernt." #. TRANS: Form validation error for a non-existing OpenID. msgid "No such OpenID." diff --git a/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po new file mode 100644 index 0000000000..2be03ce345 --- /dev/null +++ b/plugins/OpenID/locale/eu/LC_MESSAGES/OpenID.po @@ -0,0 +1,638 @@ +# Translation of StatusNet - OpenID to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenID\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-openid\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for identity verification page. +msgid "OpenID Identity Verification" +msgstr "OpenID Identitate Egiaztapena" + +#. TRANS: Client error when visiting page directly. +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "Orri hontara OpenID prozesu bidez iritsi beharko zenuke, ez zuenean." + +#. TRANS: Page notice. %s is a trustroot name. +#, php-format +msgid "" +"%s has asked to verify your identity. Click Continue to verify your identity " +"and login without creating a new password." +msgstr "" +"%s(e)k zure nortasubna egiaztatu nahi du. Klikatu Jarraitu zure nortasuna " +"egiaztatzeko eta pasahitzik gabe saioa hasteko." + +#. TRANS: Button text to continue OpenID identity verification. +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +msgctxt "BUTTON" +msgid "Continue" +msgstr "Jarraitu" + +#. TRANS: Button text to cancel OpenID identity verification. +msgctxt "BUTTON" +msgid "Cancel" +msgstr "Utzi" + +#. TRANS: Client exception thrown when an action is not available. +msgid "Unavailable action." +msgstr "Ekintza erabilezina." + +#. TRANS: Tooltip for main menu option "Login" +msgctxt "TOOLTIP" +msgid "Login to the site." +msgstr "Saioa hasi gunean." + +#. TRANS: Main menu option when not logged in to log in +msgctxt "MENU" +msgid "Login" +msgstr "Saioa hasi" + +#. TRANS: Tooltip for main menu option "Help" +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Lagundu!" + +#. TRANS: Main menu option for help on the StatusNet site +msgctxt "MENU" +msgid "Help" +msgstr "Laguntza" + +#. TRANS: Tooltip for main menu option "Search" +msgctxt "TOOLTIP" +msgid "Search for people or text." +msgstr "Bilatu jendea edo testua." + +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +msgctxt "MENU" +msgid "Search" +msgstr "Bilatu" + +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#. TRANS: OpenID configuration menu item. +msgctxt "MENU" +msgid "OpenID" +msgstr "OpenID" + +#. TRANS: OpenID plugin tooltip for logon menu item. +msgid "Login or register with OpenID." +msgstr "Saioa hasi edo izen eman OpenIDekin." + +#. TRANS: OpenID plugin tooltip for user settings menu item. +msgid "Add or remove OpenIDs." +msgstr "Gehitu edo ezabatu OpenIDak." + +#. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" +"action.openidsettings%%)!" +msgstr "" +"(Baduzu [OpenIDrik](http://openid.net/)? [Gehitu OpenID bat zure kontuari](%%" +"action.openidsettings%%)!" + +#. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" +"action.openidlogin%%)!)" +msgstr "" +"(Baduzu [OpenIDrik](http://openid.net/)? Saiatu gure [OpenID erregistroa](%%" +"action.openidlogin%%)!)" + +#. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. +#. TRANS: This message contains Markdown links in the form (description)[link]. +#, php-format +msgid "" +"(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." +"openidlogin%%)!)" +msgstr "" +"(Baduzu [OpenIDrik](http://openid.net/)? Saiatu gure [OpenID saio hasera](%%" +"action.openidlogin%%)!)" + +#. TRANS: Tooltip for OpenID configuration menu item. +msgid "OpenID configuration." +msgstr "OpenID konfigurazioa." + +#. TRANS: Plugin description. +msgid "Use OpenID to login to the site." +msgstr "" +"Erabili OpenID gunean saioa hasteko." + +#. TRANS: OpenID plugin logon form legend. +msgctxt "LEGEND" +msgid "OpenID login" +msgstr "OpenID saio hasera" + +#. TRANS: Field label. +msgid "OpenID provider" +msgstr "OpenID hornitzailea" + +#. TRANS: Form guide. +msgid "Enter your username." +msgstr "Sartu zure erabiltzailea." + +#. TRANS: Form guide. +msgid "You will be sent to the provider's site for authentication." +msgstr "Hornitzailearen gunera bideratua izango zara autentifikatzeko." + +#. TRANS: OpenID plugin logon form field label. +#. TRANS: Field label. +#. TRANS: OpenID plugin logon form field label. +msgid "OpenID URL" +msgstr "OpenID URLa" + +#. TRANS: OpenID plugin logon form field instructions. +#. TRANS: OpenID plugin logon form field title. +msgid "Your OpenID URL." +msgstr "Zure OpenID URLa." + +#. TRANS: Client error message trying to log on with OpenID while already logged on. +msgid "Already logged in." +msgstr "Dagoeneko saioa hasita." + +#. TRANS: Message given when there is a problem with the user's session token. +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "Zure saio tokenarekin arazo bat egon da. Saiatu berriro, mesedez." + +#. TRANS: Message given if user does not agree with the site's license. +msgid "You cannot register if you do not agree to the license." +msgstr "Ezin duzu izenik eman ez bazaude lizentziarekin ados." + +#. TRANS: Messag given on an unknown error. +msgid "An unknown error has occured." +msgstr "Akats ezezaguna." + +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. +#, php-format +msgid "" +"This is the first time you have logged into %s so we must connect your " +"OpenID to a local account. You can either create a new account, or connect " +"with your existing account, if you have one." +msgstr "" +"Hau da lehenbiziko aldia %s(e)n saioa hasten duzuna, zure OpenID kontua " +"kontu lokal batekin batuko dugu. Kontu berri bat sor dezakezu baita ere, edo " +"dagoeneko bat baldin baduzu horrekin konektatu zaitezke." + +#. TRANS: Title +msgctxt "TITLE" +msgid "OpenID Account Setup" +msgstr "OpenID Kontu Instalazioa" + +#. TRANS: Fieldset legend. +msgid "Create new account" +msgstr "Kontu berria sortu" + +#. TRANS: Form guide. +msgid "Create a new user with this nickname." +msgstr "Sortu erabiltzaile berri bat goitizen honekin." + +#. TRANS: Field label. +msgid "New nickname" +msgstr "Goitizen berria" + +#. TRANS: Field title. +msgid "1-64 lowercase letters or numbers, no punctuation or spaces." +msgstr "1etik 64ra letra xehea edo zenbaki, ez untuazio edo espaziorik gabe." + +#. TRANS: Field label. +msgid "Email" +msgstr "Eposta" + +#. TRANS: Field title. +msgid "Used only for updates, announcements, and password recovery." +msgstr "" +"Eguneraketarako, jakinarazpen eta pasahitz berreskurapenerako soilik " +"erabilia." + +#. TRANS: OpenID plugin link text. +#. TRANS: %s is a link to a license with the license name as link text. +#, php-format +msgid "" +"My text and files are available under %s except this private data: password, " +"email address, IM address, and phone number." +msgstr "" +"Nere testu eta fitxategiak %s lizentziapean daude, pasahitza, eposta " +"helbidea, IM helbidea eta telefono zenbakia ezik." + +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +msgctxt "BUTTON" +msgid "Create" +msgstr "Sortu" + +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +msgid "Connect existing account" +msgstr "Konektatu sorturiko kontuarekin" + +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Dagoeneko kontu bat baduzu, hasi saioa zure erabiltzaile eta pasahitzarekin " +"zure OpenIDra konektatzeko." + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +msgid "Existing nickname" +msgstr "Goitizena existitzen da" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +msgid "Password" +msgstr "Pasahitza" + +#. TRANS: Button text in form in which to connect an OpenID to an existing user on the site. +msgctxt "BUTTON" +msgid "Connect" +msgstr "Konektatu" + +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +msgid "OpenID authentication cancelled." +msgstr "Open autentifikazioa bertan behera utzita." + +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#, php-format +msgid "OpenID authentication failed: %s." +msgstr "OpenID autentifikazio akatsa: %s" + +#. TRANS: Message displayed when OpenID authentication is aborted. +#. TRANS: OpenID authentication error. +msgid "" +"OpenID authentication aborted: You are not allowed to login to this site." +msgstr "" +"OpenID autentifikazioa abortatua: Ez zaude baimenduta gune hontan sartzeko." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +msgid "Registration not allowed." +msgstr "Ezin da izen eman." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +msgid "Not a valid invitation code." +msgstr "Gonbidapen kodea ez da baliozkoa." + +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +msgid "Nickname not allowed." +msgstr "Goitizen hori ez da onartzen." + +#. TRANS: OpenID plugin message. The entered new user name is already used. +msgid "Nickname already in use. Try another one." +msgstr "Goitizen hori erabilzen ari da dagoeneko. Saiatu beste batekin." + +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +msgid "Stored OpenID not found." +msgstr "Gordetako OpenIDa ez da aurkitu." + +#. TRANS: OpenID plugin server error. +msgid "Creating new account for OpenID that already has a user." +msgstr "" +"Dagoeneko erabiltzaile bat duen OpenIDarentzat kontu berri bat sortzen." + +#. TRANS: OpenID plugin message. +msgid "Invalid username or password." +msgstr "Erabiltzaile edo pasahitz baliogabea." + +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +msgid "Error connecting user to OpenID." +msgstr "Akatsa erabiltzailea OpenIDra konektatzean." + +#. TRANS: OpenID plugin server error. +msgid "Cannot instantiate OpenID consumer object." +msgstr "OpenID kontsumitzaile objetua ezin habiarazi." + +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +msgid "Not a valid OpenID." +msgstr "OpenID baliogabea." + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#, php-format +msgid "OpenID failure: %s." +msgstr "OpenID akatsa: %s." + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#, php-format +msgid "Could not redirect to server: %s." +msgstr "Ezin izan da zerbitzarira bideratu: %s." + +#. TRANS: OpenID plugin user instructions. +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Inprimaki hau automatikoki bidaliko da. Ez bada horrela, klikatu bidalketa " +"botoia zure OpenID hornitzailera bideratzeko." + +#. TRANS: OpenID plugin server error. +msgid "Error saving the profile." +msgstr "Akatsa profila gordetzean." + +#. TRANS: OpenID plugin server error. +msgid "Error saving the user." +msgstr "Akatsa erabiltzailea gordetzean." + +#. TRANS: OpenID plugin client exception (403). +msgid "Unauthorized URL used for OpenID login." +msgstr "OpenID saio haseran erabilitako URL baimenik gabea." + +#. TRANS: Title +msgid "OpenID Login Submission" +msgstr "OpenID Saio Hasera Bidalketa" + +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +msgid "Requesting authorization from your login provider..." +msgstr "Zure hornitzaileari baimena eskatzen..." + +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +msgid "" +"If you are not redirected to your login provider in a few seconds, try " +"pushing the button below." +msgstr "" +"Segundu gutxi batzutan ez bazara zure hornitzailera berbideratua izaten, " +"saiatu azpiko botoia sakatuz." + +#. TRANS: Title for OpenID bridge administration page. +msgctxt "TITLE" +msgid "OpenID Settings" +msgstr "OpenID Aukerak" + +#. TRANS: Page instructions. +msgid "OpenID settings" +msgstr "OpenID aukerak" + +#. TRANS: Client error displayed when OpenID provider URL is too long. +msgid "Invalid provider URL. Maximum length is 255 characters." +msgstr "Hornitzailearen URL baliogabea. 255 karaktera gehienez." + +#. TRANS: Client error displayed when Launchpad team name is too long. +msgid "Invalid team name. Maximum length is 255 characters." +msgstr "Talde izen baliogabea. 255 karaktere gehienez." + +#. TRANS: Fieldset legend. +msgctxt "LEGEND" +msgid "Trusted provider" +msgstr "Hornitzaile fidagarria" + +#. TRANS: Form guide. +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" +"Berez, erabiltzaileek edozein OpenID hornitzailerekin autentifikatu " +"daitezke. Zure OpenID zerbitzu propioa badarabilzu banatutako saio " +"haseretarako, hemen zure erabiltzaileei soilik mugatu diezaiekezu sarbidea." + +#. TRANS: Field label. +msgid "Provider URL" +msgstr "Hornitzailearen URLa" + +#. TRANS: Field title. +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" +"OpenID saio hasera guztiak URL hontara bidaliko dira; beste hornitzaileak ez " +"lirateke erabili behar." + +#. TRANS: Checkbox label. +msgid "Append a username to base URL" +msgstr "Gehitu erabiltzaile bat oinarrizko URLari." + +#. TRANS: Checkbox title. +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" +"Saio hasera inprimakiak oinarrizko URLa erakutsiko du eta ondoren " +"erabiltzaile bat gehitzea eskatuko. Erabili OpenID hornitzailearen URLa, " +"erabiltzaile bakoitzaren profil orria izan behar duenean." + +#. TRANS: Field label. +msgid "Required team" +msgstr "Derrigorrezko taldea" + +#. TRANS: Field title. +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" +"Emandako taldeko erabiltzaileen saio haserak soilik onartzen dira (Launchpad " +"luzapena)." + +#. TRANS: Fieldset legend. +msgctxt "LEGEND" +msgid "Options" +msgstr "Aukerak" + +#. TRANS: Checkbox label. +msgid "Enable OpenID-only mode" +msgstr "Gaitu OpenID-soil modua" + +#. TRANS: Checkbox title. +msgid "" +"Require all users to login via OpenID. Warning: disables password " +"authentication for all users!" +msgstr "" +"Behartu erabiltzaile guztiak OpenID bidez saioa hastera. Kontuz: pasahitz " +"autentifikazioa ezgaitzen du erabiltzaile guztientzako." + +#. TRANS: Button text to save OpenID settings. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gorde" + +#. TRANS: Button title to save OpenID settings. +msgid "Save OpenID settings." +msgstr "Gorde OpenID aukerak." + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "Saio hasi gabe." + +#. TRANS: Message in case a user tries to add an OpenID that is already connected to them. +msgid "You already have this OpenID!" +msgstr "Dagoeneko baduzu OpenID hau!" + +#. TRANS: Message in case a user tries to add an OpenID that is already used by another user. +msgid "Someone else already has this OpenID." +msgstr "Beste norbaitek badu OpenID hau dagoeneko." + +#. TRANS: Message in case the OpenID object cannot be connected to the user. +msgid "Error connecting user." +msgstr "Akatsa erabitzailea konektatzen." + +#. TRANS: Message in case the user or the user profile cannot be saved in StatusNet. +msgid "Error updating profile." +msgstr "Akatsa profila eguneratzen." + +#. TRANS: Title after getting the status of the OpenID authorisation request. +msgid "OpenID Login" +msgstr "OpenID Saio Hasera" + +#. TRANS: Title of OpenID settings page for a user. +msgctxt "TITLE" +msgid "OpenID settings" +msgstr "OpenID aukerak" + +#. TRANS: Form instructions for OpenID settings. +#. TRANS: This message contains Markdown links in the form [description](link). +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) bidez gune ezberdinetan saioa hasi ahalko duzu " +"erabiltzaile kontu berarekin. Kudeatu zure OpenIDak hemendik." + +#. TRANS: Fieldset legend. +msgctxt "LEGEND" +msgid "Add OpenID" +msgstr "Gehitu OpenIDa" + +#. TRANS: Form guide. +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Zure kontuari OpenID bat gehitu nahi badiozu, sartu azpiko kutxan eta " +"klikatu \"Gehitu\"." + +#. TRANS: Button text for adding an OpenID URL. +msgctxt "BUTTON" +msgid "Add" +msgstr "Gehitu" + +#. TRANS: Header on OpenID settings page. +msgctxt "HEADER" +msgid "Remove OpenID" +msgstr "Ezabatu OpenIDa" + +#. TRANS: Form guide. +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Zure OpenID bakarra ezabatzen baduzu beharbada ezingo duzu saiorik hasi! " +"Ezabatu nahi baduzu, gehitu berri bat aurretik." + +#. TRANS: Form guide. +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"OpenID bat ezabatu dezakezu zure kontutik \"Ezabatu\" botoian klik eginez." + +#. TRANS: Button text to remove an OpenID. +#. TRANS: Button text to remove an OpenID trustroot. +msgctxt "BUTTON" +msgid "Remove" +msgstr "Ezabatu" + +#. TRANS: Fieldset legend. +msgid "OpenID Trusted Sites" +msgstr "OpenID Gune Fidagarriak" + +#. TRANS: Form guide. +msgid "" +"The following sites are allowed to access your identity and log you in. You " +"can remove a site from this list to deny it access to your OpenID." +msgstr "" + +#. TRANS: Form validation error if no OpenID providers can be added. +msgid "Cannot add new providers." +msgstr "" + +#. TRANS: Unexpected form validation error. +msgid "Something weird happened." +msgstr "" + +#. TRANS: Form validation error when trying to remove a non-existing trustroot. +msgid "No such OpenID trustroot." +msgstr "" + +#. TRANS: Success message after removing trustroots. +msgid "Trustroots removed." +msgstr "" + +#. TRANS: Form validation error for a non-existing OpenID. +msgid "No such OpenID." +msgstr "" + +#. TRANS: Form validation error if OpenID is connected to another user. +msgid "That OpenID does not belong to you." +msgstr "" + +#. TRANS: Success message after removing an OpenID. +msgid "OpenID removed." +msgstr "" + +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#. TRANS: %s is a request identity. +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "" + +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "" + +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" + +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "" + +#. TRANS: OpenID plugin message. Title. +msgctxt "TITLE" +msgid "OpenID Login" +msgstr "" + +#. TRANS: Field label. +msgctxt "LABEL" +msgid "OpenID provider" +msgstr "" + +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +msgid "Remember me" +msgstr "" + +#. TRANS: OpenID plugin logon form field title. +msgid "Automatically login in the future; not for shared computers!" +msgstr "" + +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +msgctxt "BUTTON" +msgid "Login" +msgstr "" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index bc98f8400e..2625576790 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -4,6 +4,7 @@ # Author: Crochet.david # Author: Od1n # Author: Peter17 +# Author: Valeryan 24 # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -12,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:37+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -60,7 +62,6 @@ msgid "Unavailable action." msgstr "" #. TRANS: Tooltip for main menu option "Login" -#, fuzzy msgctxt "TOOLTIP" msgid "Login to the site." msgstr "Connexion au site" @@ -132,13 +133,6 @@ msgid "" "openidlogin%%)!)" msgstr "" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" - #. TRANS: Tooltip for OpenID configuration menu item. #, fuzzy msgid "OpenID configuration." @@ -175,7 +169,6 @@ msgstr "Adresse URL OpenID" #. TRANS: OpenID plugin logon form field instructions. #. TRANS: OpenID plugin logon form field title. -#, fuzzy msgid "Your OpenID URL." msgstr "Votre URL OpenID" @@ -583,10 +576,9 @@ msgstr "" #. TRANS: Button text to remove an OpenID. #. TRANS: Button text to remove an OpenID trustroot. -#, fuzzy msgctxt "BUTTON" msgid "Remove" -msgstr "Enlever" +msgstr "Supprimer" #. TRANS: Fieldset legend. msgid "OpenID Trusted Sites" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 14c342ea6e..2eb70f85f2 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:37+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -131,14 +132,6 @@ msgstr "" "(Possede un [OpenID](http://openid.net/)? Tenta [aperir session per OpenID](%" "%action.openidlogin%%)!)" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" -"* [OpenID](%%doc.openid%%) - Que es OpenID e como usar lo con iste servicio." - #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." msgstr "Configuration de OpenID." diff --git a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po index fd1d3de85d..b3a3518181 100644 --- a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -129,13 +130,6 @@ msgid "" "openidlogin%%)!)" msgstr "" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" - #. TRANS: Tooltip for OpenID configuration menu item. #, fuzzy msgid "OpenID configuration." diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index 6bf7a8d304..57d1f1183b 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -131,15 +132,6 @@ msgstr "" "(Имате [OpenID](http://openid.net/)? Ви предлагаме да се [најавите со OpenID]" "(%%action.openidlogin%%)!)" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" -"* [OpenID](%%doc.openid%%) - Што е OpenID и како да го користите за оваа " -"служба." - #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." msgstr "Поставки за OpenID." diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 8f39c2c232..aa623bd737 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:49+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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -135,15 +136,6 @@ msgstr "" "(Hebt u een[OpenID](http://openid.net/)? [Meld u aan via OpenID](%%action." "openidlogin%%)!)" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" -"* [OpenID](%%doc.openid%%) - wat is OpenID en hoe u het kunt gebruiken met " -"deze dienst." - #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." msgstr "OpenID-instellingen." @@ -324,7 +316,9 @@ msgstr "Het opgeslagen OpenID is niet aangetroffen." #. TRANS: OpenID plugin server error. msgid "Creating new account for OpenID that already has a user." -msgstr "Poging tot aanmaken van een OpenID-account dat al een gebruiker heeft." +msgstr "" +"Poging tot aanmaken van een gebruiker voor een OpenID dat al een gebruiker " +"heeft." #. TRANS: OpenID plugin message. msgid "Invalid username or password." diff --git a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po index 4e1c84cf8c..1aa9963380 100644 --- a/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/sv/LC_MESSAGES/OpenID.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:49+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -126,13 +127,6 @@ msgid "" "openidlogin%%)!)" msgstr "" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" - #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." msgstr "OpenID-konfiguration." diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index 6faa75940e..2bf3ebe1c9 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -125,15 +126,6 @@ msgid "" "openidlogin%%)!)" msgstr "" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" -"* [OpenID](%%doc.openid%%) - Kung ano ba ang OpenID at kung paano ito " -"gamitin sa pamamagitan ng palingkurang ito." - #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." msgstr "Pagkakaayos ng OpenID." diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index c5ae65c345..0c8ff29917 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-10-10 14:11:22+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -126,15 +127,6 @@ msgid "" "openidlogin%%)!)" msgstr "" -#. TRANS: Item on help page. This message contains Markdown links in the form [description](link). -#, php-format -msgid "" -"* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " -"service." -msgstr "" -"* [OpenID](%%doc.openid%%) — Що таке OpenID і як ним користуватися на цьому " -"сервісі." - #. TRANS: Tooltip for OpenID configuration menu item. msgid "OpenID configuration." msgstr "Конфігурація OpenID." diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 0da3295d44..5a195db8d9 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 65c60842c6..d481c4e181 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:51+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 79e0c3b4dc..6a7237ea35 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -13,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c398e4c7d8..46009b0ae0 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f0efa39694..c35ce3dc68 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 42af1ce33b..023de82b67 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 54a96eee1a..0244cfe2f3 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4ad2f95247..69ae31a56a 100644 --- a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fdfdbc6b41..e33645574a 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" diff --git a/plugins/Orbited/locale/Orbited.pot b/plugins/Orbited/locale/Orbited.pot index a4b8a3ef52..4dc76de462 100644 --- a/plugins/Orbited/locale/Orbited.pot +++ b/plugins/Orbited/locale/Orbited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po index 62f542071a..0366bd8244 100644 --- a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po index ac989e03f7..cf647c86ab 100644 --- a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po new file mode 100644 index 0000000000..8e52290295 --- /dev/null +++ b/plugins/Orbited/locale/gl/LC_MESSAGES/Orbited.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - Orbited to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Orbited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05:52+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:13+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-orbited\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception thrown when no connection can be made to a queue server. +msgid "Failed to connect to queue server." +msgstr "Erro ao conectar co servidor da cola de espera." + +#. TRANS: Plugin description. +msgid "Plugin to make updates using Orbited and STOMP." +msgstr "Complemento para realizar actualizacións mediante Orbited e STOMP." diff --git a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po index 12f8fcf67d..858c469199 100644 --- a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po index d0c5bfb8b5..f68b2cad5e 100644 --- a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po index b30d831476..2dad78eee1 100644 --- a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po index 8ed61442d2..cc650f11da 100644 --- a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po index 4c34a8bedf..71e34344a9 100644 --- a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:05: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index 8d5bf2f5b6..36bd57cbc7 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 6dfebf3ead..9a02dda9bd 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 66fccd0ed0..c71aa42c9a 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cf8c89b27c..c88ec19413 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" diff --git a/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po new file mode 100644 index 0000000000..fabf789343 --- /dev/null +++ b/plugins/PiwikAnalytics/locale/gl/LC_MESSAGES/PiwikAnalytics.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - PiwikAnalytics to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PiwikAnalytics\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"Use Piwik Open Source web analytics " +"software." +msgstr "" +"Usar o software de análise web de código aberto Piwik." diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index 5dba45da10..ff875366d4 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 90a4fba299..b49fb13d63 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9e8048ae52..5025a76e11 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4e2b28730f..415e998285 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7dd29249b5..62b9910c83 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 de8b40640f..06d2c903bb 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 34169663f1..e5a4717540 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bb3c4ac6df..bfc31fb8db 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e2c518f8ce..2402f5229b 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 55c7af7474..e66dbe9b46 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 73dc1cd14c..e9504cf1ad 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fbe1471370..7a75f38647 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po index c02ee29f95..74a5b473b0 100644 --- a/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:12+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -115,7 +116,7 @@ msgstr "استطلاع: %s" #. TRANS: Title for poll page. msgid "New poll" -msgstr "اقتراع جديد" +msgstr "استطلاع جديد" #. TRANS: Client exception thrown trying to create a poll while not logged in. msgid "You must be logged in to post a poll." diff --git a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po index 31b6990314..639e36c2bd 100644 --- a/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ca/LC_MESSAGES/Poll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:12+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po index a53e7ecc27..6edaf5ed10 100644 --- a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po b/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po new file mode 100644 index 0000000000..e15afc60b6 --- /dev/null +++ b/plugins/Poll/locale/eu/LC_MESSAGES/Poll.po @@ -0,0 +1,149 @@ +# Translation of StatusNet - Poll to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Poll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:12+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-poll\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown trying to view a non-existing poll. +msgid "No such poll." +msgstr "Ez dago inkesta hori." + +#. TRANS: Client exception thrown trying to view a non-existing poll notice. +msgid "No such poll notice." +msgstr "Ez dago inkesta ohar hori." + +#. TRANS: Page title for a poll. +#. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. +#, php-format +msgid "%1$s's poll: %2$s" +msgstr "%1$s(e)n inkesta: %2$s" + +#. TRANS: Field label on the page to create a poll. +msgid "Question" +msgstr "Galdera" + +#. TRANS: Field title on the page to create a poll. +msgid "What question are people answering?" +msgstr "Zein galdera ari da jendea erantzuten?" + +#. TRANS: Field label for an answer option on the page to create a poll. +#. TRANS: %d is the option number. +#, php-format +msgid "Option %d" +msgstr "%d aukera" + +#. TRANS: Button text for saving a new poll. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gorde" + +#. TRANS: Plugin description. +msgid "Simple extension for supporting basic polls." +msgstr "Oinarrizko inkestak egiteko luzapen sinplea." + +#. TRANS: Exception thrown trying to respond to a poll without a poll reference. +msgid "Invalid poll response: No poll reference." +msgstr "Inkesta erantzun baliogabea: Erreferentziako inkestarik ez." + +#. TRANS: Exception thrown trying to respond to a non-existing poll. +msgid "Invalid poll response: Poll is unknown." +msgstr "Inkesta erantzun baliogabea: Inkesta ezezaguna." + +#. TRANS: Exception thrown when performing an unexpected action on a poll. +#. TRANS: %s is the unexpected object type. +#, php-format +msgid "Unexpected type for poll plugin: %s." +msgstr "Inkesta pluginerako espero ez zen mota: %s" + +#. TRANS: Error text displayed if no poll data could be found. +msgid "Poll data is missing" +msgstr "Inkesta data galdu da" + +#. TRANS: Application title. +msgctxt "APPTITLE" +msgid "Poll" +msgstr "Inkesta" + +#. TRANS: Client exception thrown when responding to a poll with an invalid option. +#. TRANS: Client exception thrown responding to a poll with an invalid answer. +msgid "Invalid poll selection." +msgstr "Inkesta aukera okerra." + +#. TRANS: Notice content voting for a poll. +#. TRANS: %s is the chosen option in the poll. +#. TRANS: Rendered version of the notice content voting for a poll. +#. TRANS: %s a link to the poll with the chosen option as link description. +#, php-format +msgid "voted for \"%s\"" +msgstr "\"%s\" botatu dut" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "Bidali" + +#. TRANS: Notice content creating a poll. +#. TRANS: %1$s is the poll question, %2$s is a link to the poll. +#, php-format +msgid "Poll: %1$s %2$s" +msgstr "Inkesta: %1$s %2$s" + +#. TRANS: Rendered version of the notice content creating a poll. +#. TRANS: %s is a link to the poll with the question as link description. +#, php-format +msgid "Poll: %s" +msgstr "Inkesta: %s" + +#. TRANS: Title for poll page. +msgid "New poll" +msgstr "Inkesta berria" + +#. TRANS: Client exception thrown trying to create a poll while not logged in. +msgid "You must be logged in to post a poll." +msgstr "Saioa hasi behar duzu inkesta bat egiteko." + +#. TRANS: Client exception thrown trying to create a poll without a question. +msgid "Poll must have a question." +msgstr "Inkestak galdera bat behar du." + +#. TRANS: Client exception thrown trying to create a poll with fewer than two options. +msgid "Poll must have at least two options." +msgstr "Inkestak gutxienez bi aukera behar ditu." + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "Oharra bidalita" + +#. TRANS: Page title for poll response. +msgid "Poll response" +msgstr "Inkestaren erantzuna" + +#. TRANS: Client exception thrown trying to respond to a poll while not logged in. +msgid "You must be logged in to respond to a poll." +msgstr "Saioa hasi behar duzu inkesta bati erantzuteko." + +#. TRANS: Client exception thrown trying to respond to a non-existing poll. +msgid "Invalid or missing poll." +msgstr "Baliogabeko edo inkesta galdua." + +#. TRANS: Page title after sending a poll response. +msgid "Poll results" +msgstr "Inkestaren emaitzak" diff --git a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po index eb44a68dfb..563e6b590c 100644 --- a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po @@ -5,6 +5,7 @@ # Author: Crochet.david # Author: Iketsi # Author: Od1n +# Author: Valeryan 24 # -- # This file is distributed under the same license as the StatusNet package. # @@ -12,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poll\n" @@ -95,7 +97,7 @@ msgstr "Sélection de sondage invalide." #. TRANS: %s a link to the poll with the chosen option as link description. #, php-format msgid "voted for \"%s\"" -msgstr "ont voté pour \"%s\"" +msgstr "a voté pour \"%s\"" #. TRANS: Button text for submitting a poll response. msgctxt "BUTTON" diff --git a/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po new file mode 100644 index 0000000000..4df54d6494 --- /dev/null +++ b/plugins/Poll/locale/fur/LC_MESSAGES/Poll.po @@ -0,0 +1,149 @@ +# Translation of StatusNet - Poll to Friulian (Furlan) +# Exported from translatewiki.net +# +# Author: Klenje +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Poll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: fur\n" +"X-Message-Group: #out-statusnet-plugin-poll\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client exception thrown trying to view a non-existing poll. +msgid "No such poll." +msgstr "Il scandai nol esist." + +#. TRANS: Client exception thrown trying to view a non-existing poll notice. +msgid "No such poll notice." +msgstr "L'avîs dal scandai nol esist." + +#. TRANS: Page title for a poll. +#. TRANS: %1$s is the nickname of the user that created the poll, %2$s is the poll question. +#, php-format +msgid "%1$s's poll: %2$s" +msgstr "Scandai di %1$s: %2$s" + +#. TRANS: Field label on the page to create a poll. +msgid "Question" +msgstr "Domande" + +#. TRANS: Field title on the page to create a poll. +msgid "What question are people answering?" +msgstr "A ce domande aie di rispuindi la int?" + +#. TRANS: Field label for an answer option on the page to create a poll. +#. TRANS: %d is the option number. +#, php-format +msgid "Option %d" +msgstr "Opzion %d" + +#. TRANS: Button text for saving a new poll. +msgctxt "BUTTON" +msgid "Save" +msgstr "Salve" + +#. TRANS: Plugin description. +msgid "Simple extension for supporting basic polls." +msgstr "Estension semplice par ufrî scandais di base." + +#. TRANS: Exception thrown trying to respond to a poll without a poll reference. +msgid "Invalid poll response: No poll reference." +msgstr "Rispueste al scandai no valide: nissun riferiment al scandai." + +#. TRANS: Exception thrown trying to respond to a non-existing poll. +msgid "Invalid poll response: Poll is unknown." +msgstr "Rispueste al scandai no valide: il scandai al è scognossût." + +#. TRANS: Exception thrown when performing an unexpected action on a poll. +#. TRANS: %s is the unexpected object type. +#, php-format +msgid "Unexpected type for poll plugin: %s." +msgstr "Gjenar no spietât pal plugin pai scandais: %s" + +#. TRANS: Error text displayed if no poll data could be found. +msgid "Poll data is missing" +msgstr "Mancjin i dâts dal scandai" + +#. TRANS: Application title. +msgctxt "APPTITLE" +msgid "Poll" +msgstr "Scandai" + +#. TRANS: Client exception thrown when responding to a poll with an invalid option. +#. TRANS: Client exception thrown responding to a poll with an invalid answer. +msgid "Invalid poll selection." +msgstr "Sielte tal scandai no valide." + +#. TRANS: Notice content voting for a poll. +#. TRANS: %s is the chosen option in the poll. +#. TRANS: Rendered version of the notice content voting for a poll. +#. TRANS: %s a link to the poll with the chosen option as link description. +#, php-format +msgid "voted for \"%s\"" +msgstr "al à votât par \"%s\"" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "Trasmet" + +#. TRANS: Notice content creating a poll. +#. TRANS: %1$s is the poll question, %2$s is a link to the poll. +#, php-format +msgid "Poll: %1$s %2$s" +msgstr "Scandai: %1$s %2$s" + +#. TRANS: Rendered version of the notice content creating a poll. +#. TRANS: %s is a link to the poll with the question as link description. +#, php-format +msgid "Poll: %s" +msgstr "Scandai: %s" + +#. TRANS: Title for poll page. +msgid "New poll" +msgstr "Gnûf scandai" + +#. TRANS: Client exception thrown trying to create a poll while not logged in. +msgid "You must be logged in to post a poll." +msgstr "Tu scugnis jessi jentrât par publicâ un scandai." + +#. TRANS: Client exception thrown trying to create a poll without a question. +msgid "Poll must have a question." +msgstr "Il scandai al à di vê une domande." + +#. TRANS: Client exception thrown trying to create a poll with fewer than two options. +msgid "Poll must have at least two options." +msgstr "Il scandai al à di vê al mancul dôs opzions." + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "L'avîs al è stât publicât" + +#. TRANS: Page title for poll response. +msgid "Poll response" +msgstr "Rispueste al scandai" + +#. TRANS: Client exception thrown trying to respond to a poll while not logged in. +msgid "You must be logged in to respond to a poll." +msgstr "Tu scugnis jessi jentrât par rispuindi a un scandai." + +#. TRANS: Client exception thrown trying to respond to a non-existing poll. +msgid "Invalid or missing poll." +msgstr "Scandai no valit o mancjant." + +#. TRANS: Page title after sending a poll response. +msgid "Poll results" +msgstr "Risultâts dal scandai" diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index 7160643627..4d479af4fe 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poll\n" diff --git a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po index 7da828b8f8..c701545583 100644 --- a/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ja/LC_MESSAGES/Poll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:13+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\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 2fd1e54623..5903194bbf 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f16a455bd5..7900efdf0e 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b9d1a452bf..3baa849a64 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e3cd4e3fe8..53a52c82c2 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e8fe778cd9..cc30177ab5 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 40be4e55c4..91e057b618 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ac526b3d5d..d351610be4 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1e1c0e2bf9..6dbb1d448b 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 55199fa95e..20e02e0dd1 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" diff --git a/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po new file mode 100644 index 0000000000..21d6387e21 --- /dev/null +++ b/plugins/PostDebug/locale/gl/LC_MESSAGES/PostDebug.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - PostDebug to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PostDebug\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-postdebug\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Debugging tool to record request details on POST." +msgstr "" +"Ferramenta de depuración para rexistrar os detalles de solicitudes en POST." diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index e2bc4bd8d4..ab3ed58d96 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 65b1e7dfdb..739f4944f3 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8af03448fa..12a26e501c 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2fe5b48113..76c92679a1 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:15+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 14c25b3f80..1fb84d6afb 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9af14709be..680e02f106 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 59fc97fffc..7b35c489bf 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b47cd913a9..723421d8f8 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7d075e24a3..c91f3c74ad 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:44:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:16+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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f2296b41ff..9f1b19771d 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0fb3b22a01..99be772c61 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ec2329e3a1..2025ee4077 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6e5bfc9d3f..fd3867d314 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/af/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po index 6aa5c8fed3..00a8fbc669 100644 --- a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:16+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index 57a0a1f6dd..02c3873047 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a1f0317eb0..cf42da9fa7 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 314f64cd70..931a66a654 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po new file mode 100644 index 0000000000..337e779729 --- /dev/null +++ b/plugins/PoweredByStatusNet/locale/eu/LC_MESSAGES/PoweredByStatusNet.po @@ -0,0 +1,35 @@ +# Translation of StatusNet - PoweredByStatusNet to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PoweredByStatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Text output after site name. +msgid "powered by StatusNet" +msgstr "StatusNetekin dabil" + +#. TRANS: Plugin description. +msgid "" +"Outputs \"powered by StatusNet\" after " +"site name." +msgstr "" +"Gunearen izenaren ondoren \"StatusNetekin " +"dabil\" esaldia jartzen du." diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 678b140746..644e703aa2 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5d2fab0e28..397dc6dbde 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" diff --git a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po index 08c91c3efc..dd20e94a1f 100644 --- a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\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 a881edc377..fb85299df0 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b2c9de9ee2..9e376b458e 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2852244019..e40765fb4d 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a79e178f2d..5ca6062301 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 66e5ed3c85..3af30db196 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 43f38b2a31..914dde28f0 100644 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:17+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 51a3023a38..99b8965b5e 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c89c037d45..fa330bdd03 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6286465f59..a7dcf90176 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 bfde03a340..dab172cd5f 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" diff --git a/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po new file mode 100644 index 0000000000..1f5ef4f226 --- /dev/null +++ b/plugins/PtitUrl/locale/ca/LC_MESSAGES/PtitUrl.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - PtitUrl to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - PtitUrl\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:18+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-ptiturl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. +msgid "You must specify a serviceUrl for ptit URL shortening." +msgstr "" + +#. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). +#, php-format +msgid "Uses %1$s URL-shortener service." +msgstr "" +"Utilitza el servei d'escurçament d'URL %1$s." diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index 2683cc9050..141f81e507 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cf5cb630ca..9675f2652b 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 42fb3b20f6..61f5ec4ad3 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6365118e2e..9ef167fb63 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:18+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a47bca0f48..56a4181752 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 33b0902449..ceeb977102 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f5554fc0b2..a9301f6fb2 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:02+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b243f2ba90..6f6655533d 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2a22433858..63f5ce3d66 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2aaae0dec7..d030ab164e 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bb7298cd20..c773f5869f 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9c14d2a15a..24ab87afd4 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:19+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 05f42f18ef..0f6a3ed76a 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bb983ef0ca..6c3bb6f63e 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fda6edd2ce..1ba577637d 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:03+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fe2a73e8bf..22614b5a20 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po index db042a603a..cf28b2d3f6 100644 --- a/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:24+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -37,7 +38,7 @@ msgstr "يجب أن يكون للسؤال عنوان." #. TRANS: Page title after sending a notice. msgid "Question posted" -msgstr "نُشر السؤال." +msgstr "نُشر السؤال" #. TRANS: Client exception thrown when requesting a non-existing answer. #. TRANS: Did we used to have it, and it got deleted? diff --git a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po index c5a183d49e..5bde5b7ef6 100644 --- a/plugins/QnA/locale/br/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/br/LC_MESSAGES/QnA.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po index e3eeb76fdc..9081e64a6e 100644 --- a/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ca/LC_MESSAGES/QnA.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:24+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -60,7 +61,7 @@ msgstr "Usuari sense perfil." #. TRANS: %1$s is the user who answered a question, %2$s is the question. #, php-format msgid "%1$s's answer to \"%2$s\"" -msgstr "" +msgstr "Resposta de %1$s a «%2$s»" #. TRANS: Page title for revising a question msgid "Revise answer" @@ -97,7 +98,7 @@ msgstr "No existeix l'avís de la resposta." #. TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. #, php-format msgid "%1$s's question: %2$s" -msgstr "" +msgstr "Pregunta de %1$s: %2$s" #. TRANS: Page title for close a question msgid "Close question" @@ -105,15 +106,15 @@ msgstr "Tanca la pregunta" #. TRANS: Client exception thrown trying to close a question when not logged in msgid "You must be logged in to close a question." -msgstr "" +msgstr "Cal haver iniciat una sessió per tancar una pregunta." #. TRANS: Client exception thrown trying to respond to a non-existing question. msgid "Invalid or missing question." -msgstr "" +msgstr "La pregunta no és vàlida o no hi és." #. TRANS: Exception thrown trying to close another user's question. msgid "You did not ask this question." -msgstr "" +msgstr "No heu respost la pregunta." #. TRANS: Page title after sending an answer. #. TRANS: Page title after sending in a vote for a question or answer. @@ -127,7 +128,7 @@ msgstr "Error d'Ajax" #. TRANS: Title for form to send answer to a question. msgctxt "TITLE" msgid "Your answer" -msgstr "" +msgstr "La vostra resposta" #. TRANS: Error message displayed when an answer has no content. #. TRANS: Error message displayed when answer data is not present. @@ -136,42 +137,42 @@ msgstr "Manquen les dades de la resposta." #. TRANS: Plugin description. msgid "Question and Answers micro-app." -msgstr "" +msgstr "Microaplicació de preguntes i respostes." #. TRANS: Application title. msgctxt "TITLE" msgid "Question" -msgstr "" +msgstr "Pregunta" #. TRANS: Exception thrown when there are too many activity objects. msgid "Too many activity objects." -msgstr "" +msgstr "Masses objectes d'activitat." #. TRANS: Exception thrown when an incorrect object type is encountered. msgid "Wrong type for object." -msgstr "" +msgstr "Tipus d'objecte incorrecte." #. TRANS: Exception thrown when answering a non-existing question. msgid "Answer to unknown question." -msgstr "" +msgstr "Resposta a una pregunta desconeguda." #. TRANS: Exception thrown when an object type is encountered that cannot be handled. msgid "Unknown object type." -msgstr "" +msgstr "Tipus d'objecte desconegut." #. TRANS: Exception thrown when requesting a non-existing question notice. msgid "Unknown question notice." -msgstr "" +msgstr "Avís de pregunta desconegut." #. TRANS: Exception thrown when performing an unexpected action on a question. #. TRANS: %s is the unpexpected object type. #, php-format msgid "Unexpected type for QnA plugin: %s." -msgstr "" +msgstr "Tipus no esperat per al connector QnA: %s." #. TRANS: Error message displayed when question data is not present. msgid "Question data is missing." -msgstr "" +msgstr "Les dades de la pregunta no hi són." #. TRANS: Placeholder value for a possible answer to a question #. TRANS: by the logged in user. @@ -191,7 +192,7 @@ msgstr "més..." #. TRANS: %s is the non-existing question ID. #, php-format msgid "No question with ID %s" -msgstr "" +msgstr "No hi ha cap pregunta amb ID %s" #. TRANS: Exception thown when getting a profile with a non-existing ID. #. TRANS: %s is the non-existing profile ID. @@ -199,21 +200,21 @@ msgstr "" #. TRANS: %s is the provided profile ID. #, php-format msgid "No profile with ID %s" -msgstr "" +msgstr "No hi ha cap perfil amb ID %s" #. TRANS: %s is the number of answer revisions. #, php-format msgid "%s revision" msgid_plural "%s revisions" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s revisió" +msgstr[1] "%s revisions" #. TRANS: Text for a question that was answered. #. TRANS: %1$s is the user that answered, %2$s is the question title, #. TRANS: %2$s is the answer content. #, php-format msgid "%1$s answered the question \"%2$s\": %3$s" -msgstr "" +msgstr "%1$s ha respost la pregunta «%2$s»: %3$s" #. TRANS: Text for a question that was answered. #. TRANS: %s is the question title. @@ -221,15 +222,15 @@ msgstr "" #. TRANS: %s a link to the question with question title as the link content. #, php-format msgid "answered \"%s\"" -msgstr "" +msgstr "ha respost «%s»" #. TRANS: Number of given answers to a question. #. TRANS: %s is the number of given answers. #, php-format msgid "%s answer" msgid_plural "%s answers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s resposta" +msgstr[1] "%s respostes" #. TRANS: Notification that a question cannot be answered anymore because it is closed. msgid "This question is closed." @@ -268,36 +269,36 @@ msgstr "El títol de la vostra pregunta." #. TRANS: Field label for question details. msgctxt "LABEL" msgid "Description" -msgstr "" +msgstr "Descripció" #. TRANS: Field title for question details. msgid "Your question in detail." -msgstr "" +msgstr "La vostra pregunta en detall." #. TRANS: Button text for saving a new question. msgctxt "BUTTON" msgid "Save" -msgstr "" +msgstr "Desa" #. TRANS: Form legend for revising the answer. msgctxt "LEGEND" msgid "Question" -msgstr "" +msgstr "Pregunta" #. TRANS: Button text for closing a question. msgctxt "BUTTON" msgid "Close" -msgstr "" +msgstr "Tanca" #. TRANS: Title for button text for closing a question. msgid "Close the question to no one can answer it anymore." -msgstr "" +msgstr "Tanca la pregunta per tal que ningú pugui respondre-la més." #. TRANS: Button text for marking an answer as "best". msgctxt "BUTTON" msgid "Best" -msgstr "" +msgstr "Millor" #. TRANS: Title for button text marking an answer as "best". msgid "Mark this answer as the best answer." -msgstr "" +msgstr "Marca aquesta resposta com a millor resposta." diff --git a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po index ce42702559..836794185d 100644 --- a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po @@ -3,6 +3,7 @@ # # Author: Giftpflanze # Author: Inkowik +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -10,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-qna\n" @@ -82,7 +84,6 @@ msgid "Answer" msgstr "Antwort" #. TRANS: Form title for sending an answer. -#, fuzzy msgctxt "TITLE" msgid "Answer" msgstr "Antwort" @@ -114,7 +115,6 @@ msgid "Invalid or missing question." msgstr "Ungültige oder fehlende Frage." #. TRANS: Exception thrown trying to close another user's question. -#, fuzzy msgid "You did not ask this question." msgstr "Du hast diese Frage nicht gestellt." @@ -142,7 +142,6 @@ msgid "Question and Answers micro-app." msgstr "Minianwendung für Fragen und Antworten." #. TRANS: Application title. -#, fuzzy msgctxt "TITLE" msgid "Question" msgstr "Frage" @@ -185,7 +184,7 @@ msgstr "Deine Antwort …" #. TRANS: Link description for link to full notice text if it is longer than #. TRANS: what will be dispplayed. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Title for link that is an ellipsis in English. msgid "more..." @@ -193,9 +192,9 @@ msgstr "mehr …" #. TRANS: Exception thown when getting a question with a non-existing ID. #. TRANS: %s is the non-existing question ID. -#, fuzzy, php-format +#, php-format msgid "No question with ID %s" -msgstr "Keine Frage für diese Antwort." +msgstr "Keine Frage mit der ID %s" #. TRANS: Exception thown when getting a profile with a non-existing ID. #. TRANS: %s is the non-existing profile ID. @@ -206,10 +205,10 @@ msgid "No profile with ID %s" msgstr "Kein Profil mit der ID %s." #. TRANS: %s is the number of answer revisions. -#, fuzzy, php-format +#, php-format msgid "%s revision" msgid_plural "%s revisions" -msgstr[0] "%s Versionen" +msgstr[0] "%s Version" msgstr[1] "%s Versionen" #. TRANS: Text for a question that was answered. @@ -229,11 +228,11 @@ msgstr "antwortete „%s>“" #. TRANS: Number of given answers to a question. #. TRANS: %s is the number of given answers. -#, fuzzy, php-format +#, php-format msgid "%s answer" msgid_plural "%s answers" -msgstr[0] "%s antwortet" -msgstr[1] "%s antwortet" +msgstr[0] "%s Antwort" +msgstr[1] "%s Antworten" #. TRANS: Notification that a question cannot be answered anymore because it is closed. msgid "This question is closed." @@ -261,26 +260,22 @@ msgid "Answer" msgstr "Antwort" #. TRANS: Field label for a new question. -#, fuzzy msgctxt "LABEL" msgid "Title" msgstr "Titel" #. TRANS: Field title for a new question. -#, fuzzy msgid "The title of your question." -msgstr "Titel deiner Frage" +msgstr "Der Titel deiner Frage." #. TRANS: Field label for question details. -#, fuzzy msgctxt "LABEL" msgid "Description" msgstr "Beschreibung" #. TRANS: Field title for question details. -#, fuzzy msgid "Your question in detail." -msgstr "Deine Frage im Detail" +msgstr "Deine Frage im Detail." #. TRANS: Button text for saving a new question. msgctxt "BUTTON" @@ -288,7 +283,6 @@ msgid "Save" msgstr "Speichern" #. TRANS: Form legend for revising the answer. -#, fuzzy msgctxt "LEGEND" msgid "Question" msgstr "Frage" @@ -300,7 +294,7 @@ msgstr "Schließen" #. TRANS: Title for button text for closing a question. msgid "Close the question to no one can answer it anymore." -msgstr "" +msgstr "Die Frage schließen, sodass niemand mehr antworten kann." #. TRANS: Button text for marking an answer as "best". msgctxt "BUTTON" @@ -308,6 +302,5 @@ msgid "Best" msgstr "Beste Antwort" #. TRANS: Title for button text marking an answer as "best". -#, fuzzy msgid "Mark this answer as the best answer." -msgstr "Als beste Antwort markieren" +msgstr "Diese Antwort als die beste Antwort markieren." diff --git a/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po new file mode 100644 index 0000000000..f449868b26 --- /dev/null +++ b/plugins/QnA/locale/eu/LC_MESSAGES/QnA.po @@ -0,0 +1,304 @@ +# Translation of StatusNet - QnA to Basque (Euskara) +# Exported from translatewiki.net +# +# Author: Artsuaga +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - QnA\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:24+0000\n" +"Language-Team: Basque \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: eu\n" +"X-Message-Group: #out-statusnet-plugin-qna\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for Question page. +msgid "New question" +msgstr "Galdera berria" + +#. TRANS: Client exception thrown trying to create a Question while not logged in. +msgid "You must be logged in to post a question." +msgstr "Galdera bat bidaltzeko saioa hasi behar duzu." + +#. TRANS: Client exception thrown trying to create a question without a title. +msgid "Question must have a title." +msgstr "Galderak titulu bat izan behar du." + +#. TRANS: Page title after sending a notice. +msgid "Question posted" +msgstr "Galdera bidali da" + +#. TRANS: Client exception thrown when requesting a non-existing answer. +#. TRANS: Did we used to have it, and it got deleted? +msgid "No such answer." +msgstr "Ez dago erantzun hori." + +#. TRANS: Client exception thrown when requesting an answer that has no connected question. +msgid "No question for this answer." +msgstr "Ez dago erantzunik galdera honentzat." + +#. TRANS: Client exception thrown when requesting answer data for a non-existing user. +#. TRANS: Client exception thrown trying to view a question of a non-existing user. +msgid "No such user." +msgstr "Ez dago erabiltzaile hori." + +#. TRANS: Client exception thrown when requesting answer data for a user without a profile. +#. TRANS: Server exception thrown trying to view a question for a user for which the profile could not be loaded. +msgid "User without a profile." +msgstr "Profilik gabeko erabiltzailea." + +#. TRANS: Page title. +#. TRANS: %1$s is the user who answered a question, %2$s is the question. +#, php-format +msgid "%1$s's answer to \"%2$s\"" +msgstr "%1$s(r)en erantzuna \"%2$s\" galderari." + +#. TRANS: Page title for revising a question +msgid "Revise answer" +msgstr "Erantzunta berraztertu." + +#. TRANS: Client exception thrown trying to answer a question while not logged in. +msgid "You must be logged in to answer to a question." +msgstr "Saioa hasi behar duzu galdera bati erantzuteko." + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +msgid "Invalid or missing answer." +msgstr "Erantzun baliogabe edo okerra." + +#. TRANS: Page title after sending an answer. +#. TRANS: Page title for and answer to a question. +#. TRANS: Form legend for showing the answer. +msgid "Answer" +msgstr "Erantzun" + +#. TRANS: Form title for sending an answer. +msgctxt "TITLE" +msgid "Answer" +msgstr "Erantzun" + +#. TRANS: Client exception thrown trying to view a non-existing question. +msgid "No such question." +msgstr "Ez dago galdera hori." + +#. TRANS: Client exception thrown trying to view a non-existing question notice. +msgid "No such question notice." +msgstr "Ez dago galdera ohar hori." + +#. TRANS: Page title for a question. +#. TRANS: %1$s is the nickname of the user who asked the question, %2$s is the question. +#, php-format +msgid "%1$s's question: %2$s" +msgstr "%1$s(r)en galdera: %2$s" + +#. TRANS: Page title for close a question +msgid "Close question" +msgstr "Itxi galdera" + +#. TRANS: Client exception thrown trying to close a question when not logged in +msgid "You must be logged in to close a question." +msgstr "Saioa hasi behar duzu galdera bat isteko." + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +msgid "Invalid or missing question." +msgstr "Galdera baliogabea edo galdutakoa." + +#. TRANS: Exception thrown trying to close another user's question. +msgid "You did not ask this question." +msgstr "Galdera hau ez zenuen zuk egin." + +#. TRANS: Page title after sending an answer. +#. TRANS: Page title after sending in a vote for a question or answer. +msgid "Answers" +msgstr "Erantzunak" + +#. TRANS: Page title after an AJAX error occurs on the post answer page. +msgid "Ajax Error" +msgstr "Ajax Akatsa" + +#. TRANS: Title for form to send answer to a question. +msgctxt "TITLE" +msgid "Your answer" +msgstr "Zure erantzuna" + +#. TRANS: Error message displayed when an answer has no content. +#. TRANS: Error message displayed when answer data is not present. +msgid "Answer data is missing." +msgstr "Erantzun datuak galdu dira." + +#. TRANS: Plugin description. +msgid "Question and Answers micro-app." +msgstr "Galdera-erantzunen mikro-aplikazioa." + +#. TRANS: Application title. +msgctxt "TITLE" +msgid "Question" +msgstr "Galdera" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "Jarduera objetu gehiegi." + +#. TRANS: Exception thrown when an incorrect object type is encountered. +msgid "Wrong type for object." +msgstr "Moeta okerra objetuarentzat." + +#. TRANS: Exception thrown when answering a non-existing question. +msgid "Answer to unknown question." +msgstr "Galdera hori ez zen existitzen." + +#. TRANS: Exception thrown when an object type is encountered that cannot be handled. +msgid "Unknown object type." +msgstr "Objetu moeta ezezaguna." + +#. TRANS: Exception thrown when requesting a non-existing question notice. +msgid "Unknown question notice." +msgstr "Galdera ohar ezezaguna." + +#. TRANS: Exception thrown when performing an unexpected action on a question. +#. TRANS: %s is the unpexpected object type. +#, php-format +msgid "Unexpected type for QnA plugin: %s." +msgstr "QnA pluginarentzat espero ez zen moeta: %s." + +#. TRANS: Error message displayed when question data is not present. +msgid "Question data is missing." +msgstr "Galdera datuak galdu dira." + +#. TRANS: Placeholder value for a possible answer to a question +#. TRANS: by the logged in user. +msgid "Your answer..." +msgstr "Zure erantzuna..." + +#. TRANS: Link description for link to full notice text if it is longer than +#. TRANS: what will be dispplayed. +msgid "…" +msgstr "…" + +#. TRANS: Title for link that is an ellipsis in English. +msgid "more..." +msgstr "gehiago..." + +#. TRANS: Exception thown when getting a question with a non-existing ID. +#. TRANS: %s is the non-existing question ID. +#, php-format +msgid "No question with ID %s" +msgstr "Ez dago %s IDarekin galderarik" + +#. TRANS: Exception thown when getting a profile with a non-existing ID. +#. TRANS: %s is the non-existing profile ID. +#. TRANS: Exception trown when getting a profile for a non-existing ID. +#. TRANS: %s is the provided profile ID. +#, php-format +msgid "No profile with ID %s" +msgstr "Ez dago %s IDarekin profilik" + +#. TRANS: %s is the number of answer revisions. +#, php-format +msgid "%s revision" +msgid_plural "%s revisions" +msgstr[0] "zuzenketa %s" +msgstr[1] "%s zuzenketa" + +#. TRANS: Text for a question that was answered. +#. TRANS: %1$s is the user that answered, %2$s is the question title, +#. TRANS: %2$s is the answer content. +#, php-format +msgid "%1$s answered the question \"%2$s\": %3$s" +msgstr "%1$s(e)k \"%2$s\" galderari erantzun dio: %3$s" + +#. TRANS: Text for a question that was answered. +#. TRANS: %s is the question title. +#. TRANS: Rendered version of the notice content answering a question. +#. TRANS: %s a link to the question with question title as the link content. +#, php-format +msgid "answered \"%s\"" +msgstr "\"%s\" erantzun da" + +#. TRANS: Number of given answers to a question. +#. TRANS: %s is the number of given answers. +#, php-format +msgid "%s answer" +msgid_plural "%s answers" +msgstr[0] "erantzun %s" +msgstr[1] "%s erantzun" + +#. TRANS: Notification that a question cannot be answered anymore because it is closed. +msgid "This question is closed." +msgstr "Galdera hau itxita dago." + +#. TRANS: Rendered version of the notice content creating a question. +#. TRANS: %s a link to the question as link description. +#, php-format +msgid "Question: %s" +msgstr "Galdera: %s" + +#. TRANS: Button text for submitting a revised answer. +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "Bidali" + +#. TRANS: Field label. +msgid "Enter your answer" +msgstr "Sartu zure erantzuna" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Answer" +msgstr "Erantzun" + +#. TRANS: Field label for a new question. +msgctxt "LABEL" +msgid "Title" +msgstr "Titulua" + +#. TRANS: Field title for a new question. +msgid "The title of your question." +msgstr "Zure galderaren titulua." + +#. TRANS: Field label for question details. +msgctxt "LABEL" +msgid "Description" +msgstr "Deskribapena" + +#. TRANS: Field title for question details. +msgid "Your question in detail." +msgstr "Zure galdera zehatz-mehatz" + +#. TRANS: Button text for saving a new question. +msgctxt "BUTTON" +msgid "Save" +msgstr "Gorde" + +#. TRANS: Form legend for revising the answer. +msgctxt "LEGEND" +msgid "Question" +msgstr "Galdera" + +#. TRANS: Button text for closing a question. +msgctxt "BUTTON" +msgid "Close" +msgstr "Itxi" + +#. TRANS: Title for button text for closing a question. +msgid "Close the question to no one can answer it anymore." +msgstr "Itxi galdera erantzun gehiagorik ez jasotzeko." + +#. TRANS: Button text for marking an answer as "best". +msgctxt "BUTTON" +msgid "Best" +msgstr "Egokiena" + +#. TRANS: Title for button text marking an answer as "best". +msgid "Mark this answer as the best answer." +msgstr "Markatu erantzun hau egokiena gisa." diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index 9611e98b9a..126ecc6421 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:07+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po index 52e30cdba6..2f7551d6ad 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po index 2bb84d5061..63d8579d7b 100644 --- a/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ja/LC_MESSAGES/QnA.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ja\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 63e2503908..3e25328438 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c3414331f6..c84ba31fc7 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" diff --git a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po index a7d0a70f76..c43c6992f3 100644 --- a/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/pl/LC_MESSAGES/QnA.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\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 a968891913..02d5f87f64 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fae7b5afb9..c2814519c1 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:08+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 112bf238d6..56fff70abe 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 40f0e06d69..a78787f6d6 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -13,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1aff854901..99c8388cae 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -3,6 +3,7 @@ # # Author: Crochet.david # Author: Od1n +# Author: Valeryan 24 # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -11,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" @@ -46,7 +48,7 @@ msgstr "Seuls les notifications HTTP POST sont pris en charge en ce moment." #. TRANS: List separator. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Form validation error displayed when a request body is missing expected parameters. #. TRANS: %s is a list of parameters separated by a list separator (default: ", "). diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 4107724a78..38bfb15038 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c32e2fe2c6..9ded06f797 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 70081d3dfd..20b1091d9c 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a3a5ea411e..adc0d4a39c 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 30768c6eed..09346b8cd2 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:19+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-08-16 06:59:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 63ab319cbd..bdd237753a 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 61ef668998..fd2ca668ac 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 230120e3d8..e589fbfdc0 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7a2e42c9c6..e69a2f59af 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5d4cb3a329..9884db7258 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" @@ -23,15 +24,15 @@ msgstr "" #. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." -msgstr "" +msgstr "Heu de publicar-ho." #. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." -msgstr "" +msgstr "No existeix l'argument de clau del canal." #. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." -msgstr "" +msgstr "No existeix el canal." #. TRANS: Text label for realtime view "play" button, usually replaced by an icon. msgctxt "BUTTON" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index e09e6b366c..27219cc93b 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7b55aec151..f9c2e6d01c 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ff469d2346..affaae0fd1 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:09+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po index 49cf9b3e80..4c82e793bc 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: lv\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 8f1574a8e8..63eade171f 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c346124e51..8dce3cc8cc 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5758da4556..b380430157 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po index 9cfee29c03..97ede495fa 100644 --- a/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/pl/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" diff --git a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po index 890e11c55d..e814b81112 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:27+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\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 48696fa09d..f136149265 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0bde3e7e72..08f1d6bcc6 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:28+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 211473b2d9..f1e615b34c 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:10+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2d202addd7..dfd45edc8e 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ca/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po index 1c9b2eaa44..284d1aa9c5 100644 --- a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index c03ece4355..9770c52f8d 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0c87a2195a..048cd2a747 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a211f2ee8c..ae38fdb07e 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 528625a950..23965d2e92 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 00e73e93d4..c0a8e96a99 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 90a6c8320f..22a506fdb6 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 13046100af..917f25acb2 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" diff --git a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po index 5bb1c45047..f929831408 100644 --- a/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pl/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\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 9879cc0413..6083bb7775 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 910c523ba2..dc0312e6bf 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cae3c9fd78..0eca2a7097 100644 --- a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:11+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:29+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 94010bf810..1526011df0 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4fd03e0be7..3e6c40ac98 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0897b5cd13..ba20bf4d2f 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ca/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po new file mode 100644 index 0000000000..87adad0e85 --- /dev/null +++ b/plugins/RegisterThrottle/locale/ca/LC_MESSAGES/RegisterThrottle.po @@ -0,0 +1,39 @@ +# Translation of StatusNet - RegisterThrottle to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - RegisterThrottle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-registerthrottle\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Server exception thrown when no IP address can be found for a registation attempt. +msgid "Cannot find IP address." +msgstr "No es pot trobar l'adreça IP." + +#. TRANS: Exception thrown when too many user have registered from one IP address within a given time frame. +msgid "Too many registrations. Take a break and try again later." +msgstr "Massa registreu. Prengueu un respir i torneu-ho a provar més endavant." + +#. TRANS: Exception thrown when attempting to register from an IP address from which silenced users have registered. +msgid "A banned user has registered from this address." +msgstr "" + +#. TRANS: Plugin description. +msgid "Throttles excessive registration from a single IP address." +msgstr "" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index 860ac7fbdc..c462fb8a3b 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:30+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 718a87b50b..a7b560df6d 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:30+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1982ca306f..1e6298821e 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2c4d8c1e22..e3c8d22fc0 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 dfee3fa92c..50771c35fa 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2e5fb98179..980f41c1d9 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:12+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ce2c84bf60..a24253a695 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:13+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 823838eaa5..16e0b6b3e1 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po index 648f22cb25..dff83a2518 100644 --- a/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:32+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po index d2fdbbf8b9..3f40764d35 100644 --- a/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/br/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po index baae0e024e..6a4f05431d 100644 --- a/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ca/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:32+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" @@ -35,25 +36,25 @@ msgstr "" #. TRANS: Client exception thrown when trying to register while already logged in. msgid "You are already logged in." -msgstr "" +msgstr "Ja heu iniciat una sessió." #. TRANS: Client exception thrown when trying to register with a non-existing confirmation code. msgid "Confirmation code not found." -msgstr "" +msgstr "No s'ha trobat el codi de confirmació." #. TRANS: Client exception thrown when trying to register with a confirmation code that is not connected with a user. msgid "No user for that confirmation code." -msgstr "" +msgstr "No hi ha cap usuari per a aquest codi de confirmació." #. TRANS: Client exception thrown when trying to register with a invalid e-mail address. #. TRANS: %s is the invalid e-mail address. #, php-format msgid "Unrecognized address type %s." -msgstr "" +msgstr "Tipus d'adreça no reconeguda %s." #. TRANS: Client error for an already confirmed email/jabber/sms address. msgid "That address has already been confirmed." -msgstr "" +msgstr "Ja s'ha confirmat l'adreça." #. TRANS: Client exception thrown when trying to register with too short a password. msgid "Password too short." diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index 662a16fd0a..96395ecea7 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index 5ec694b619..4fb47d881a 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:14+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index fe29e5d301..3b4b205df2 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1d2e679d84..20b182a892 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3ca33959a4..ec3476be71 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" diff --git a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po index c51aa9ebc9..1cb03ddecc 100644 --- a/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/pl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:15+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\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 a80d0cbda4..1863578fc5 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5615978958..68477b4171 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:16+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8d99bdd0d9..7b500d768a 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 2bfd020172..835d047b08 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:33+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f12918c630..8f9b9d6a16 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po new file mode 100644 index 0000000000..4c743fd311 --- /dev/null +++ b/plugins/ReverseUsernameAuthentication/locale/gl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -0,0 +1,33 @@ +# Translation of StatusNet - ReverseUsernameAuthentication to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"The Reverse Username Authentication plugin allows for StatusNet to handle " +"authentication by checking if the provided password is the same as the " +"reverse of the username." +msgstr "" +"O complemento Reverse Username Authentication permite ao StatusNet manexar a " +"autenticación comprobando se o contrasinal dado é o mesmo que o nome de " +"usuario ao revés." diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index cb2804a7a9..8a575d7f59 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e01d3830bb..b48261bd6d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1a51df265f..16dce6138a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6503be09c1..db3361d7df 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 79b990f92f..f2e9dd70e3 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0eff609951..3d9e730791 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e49c52183d..eacd93b77b 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a83829b1af..35bd91a1f5 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3c7f9dc4ad..7acaf4980a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a71dbe7ecb..8a8b76ee1d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:17+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:34+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4c3a6a94c4..13722db4f4 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 0e79d79239..4e9112ee7b 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fe1ac5f395..7c9dbf6b3b 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" diff --git a/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po new file mode 100644 index 0000000000..b6ff2ed76f --- /dev/null +++ b/plugins/SQLProfile/locale/gl/LC_MESSAGES/SQLProfile.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - SQLProfile to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SQLProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:51+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-sqlprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Debug tool to watch for poorly indexed DB queries." +msgstr "" +"Ferramenta de depuración para seguir as pescudas á base de datos mal " +"indexadas." diff --git a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po index f5a06bfa69..bdca389efc 100644 --- a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\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 e7dcbbc293..a17b9d600e 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5303f5b707..8077fea630 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 514c0418c4..4900c8dde2 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3ee5aaa48d..4e31a7062e 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 39344bf3ee..1e515d4446 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0087cca749..0342ce4702 100644 --- a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 40da454a18..9f4d816d5b 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:33+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4b8040be41..8d7f618e02 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/de/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po index 908a5d0488..f8bf6e5849 100644 --- a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po index 24d052a051..91e7e58919 100644 --- a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po new file mode 100644 index 0000000000..88f40271c5 --- /dev/null +++ b/plugins/SQLStats/locale/gl/LC_MESSAGES/SQLStats.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - SQLStats to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SQLStats\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-sqlstats\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin decription. +msgid "Debug tool to watch for poorly indexed DB queries." +msgstr "" +"Ferramenta de depuración para seguir as pescudas á base de datos mal " +"indexadas." diff --git a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po index 844a82db78..85592bbeb8 100644 --- a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po index 0e679d5791..d4561b60f7 100644 --- a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po index f78ccb1286..f7ec8452a2 100644 --- a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:52+0000\n" "Language-Team: Colognian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ksh\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 65c7d7ed1f..1134546b4d 100644 --- a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c33c05ccfa..9b18d5ab5b 100644 --- a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1815ccb798..89c52b714d 100644 --- a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:34+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po index d37b7c3b35..11cc143093 100644 --- a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index abb20c6857..421a3096d6 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/af/LC_MESSAGES/Sample.po b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po index 5d2a07cec9..5af891e128 100644 --- a/plugins/Sample/locale/af/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po index 7f76b8d68b..ebf4600c78 100644 --- a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index f369269822..67ffc4df73 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po index eefcd93257..df786477c8 100644 --- a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\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 e9ba46f508..15fc4fe075 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 23cd070588..d340ed6f4a 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9f1ad954db..9c0a65315e 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8e4e8b248b..0d59b3ab3c 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:37+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ab6e89d43d..aade3ce5ad 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0f7eff4116..5f6d8ef063 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:20+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" diff --git a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po index 6bd2c09972..b137169c8d 100644 --- a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:38+0000\n" "Language-Team: Deitsch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pdc\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 25f2db9be7..5283eb4c88 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3f6578d621..3ce28a6715 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 200b2fde3a..40fc605f10 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 10cc6a83fd..ab83ecb2a2 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:21+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:38+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ea0904282f..69954a0b9b 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ca/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po new file mode 100644 index 0000000000..4e3fe98bbb --- /dev/null +++ b/plugins/SearchSub/locale/ca/LC_MESSAGES/SearchSub.po @@ -0,0 +1,220 @@ +# Translation of StatusNet - SearchSub to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SearchSub\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:39+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-searchsub\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Header for subscriptions overview for a user (first page). +#. TRANS: %s is a user nickname. +#, php-format +msgid "%s's search subscriptions" +msgstr "Subscripcions de cerca de %s" + +#. TRANS: Header for subscriptions overview for a user (not first page). +#. TRANS: %1$s is a user nickname, %2$d is the page number. +#, php-format +msgid "%1$s's search subscriptions, page %2$d" +msgstr "" + +#. TRANS: Page notice for page with an overview of all search subscriptions +#. TRANS: of the logged in user's own profile. +msgid "" +"You have subscribed to receive all notices on this site matching the " +"following searches:" +msgstr "" + +#. TRANS: Page notice for page with an overview of all subscriptions of a user other +#. TRANS: than the logged in user. %s is the user nickname. +#, php-format +msgid "" +"%s has subscribed to receive all notices on this site matching the following " +"searches:" +msgstr "" + +#. TRANS: Search subscription list text when the logged in user has no search subscriptions. +msgid "" +"You are not subscribed to any text searches right now. You can push the " +"\"Subscribe\" button on any notice text search to automatically receive any " +"public messages on this site that match that search, even if you are not " +"subscribed to the poster." +msgstr "" + +#. TRANS: Search subscription list text when looking at the subscriptions for a of a user other +#. TRANS: than the logged in user that has no search subscriptions. %s is the user nickname. +#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none +#. TRANS: as an anonymous user. %s is the user nickname. +#, php-format +msgid "%s is not subscribed to any searches." +msgstr "" + +#. TRANS: Search subscription list item. %1$s is a URL to a notice search, +#. TRANS: %2$s are the search criteria, %3$s is a datestring. +#, php-format +msgid "\"%2$s\" since %3$s" +msgstr "" + +#. TRANS: Error text shown a user tries to untrack a search query they're not subscribed to. +#. TRANS: %s is the keyword for the search. +#, php-format +msgid "You are not tracking the search \"%s\"." +msgstr "" + +#. TRANS: Message given having failed to cancel a search subscription by untrack command. +#. TRANS: %s is the keyword for the query. +#, php-format +msgid "Could not end a search subscription for query \"%s\"." +msgstr "" + +#. TRANS: Message given having removed a search subscription by untrack command. +#. TRANS: %s is the keyword for the search. +#, php-format +msgid "You are no longer subscribed to the search \"%s\"." +msgstr "" + +#. TRANS: Client error displayed trying to perform any request method other than POST. +#. TRANS: Do not translate POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token is not okay. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "No s'ha iniciat una sessió." + +#. TRANS: Client error displayed trying to subscribe to a non-existing profile. +msgid "No such profile." +msgstr "No existeix el perfil." + +#. TRANS: Page title when search subscription succeeded. +msgid "Subscribed" +msgstr "Subscrit" + +#. TRANS: Form legend. +msgid "Unsubscribe from this search" +msgstr "Cancel·la la subscripció d'aquesta cerca" + +#. TRANS: Button text for unsubscribing from a text search. +msgctxt "BUTTON" +msgid "Unsubscribe" +msgstr "Cancel·la la subscripció" + +#. TRANS: Button title for unsubscribing from a text search. +msgid "Unsubscribe from this search." +msgstr "Cancel·la la subscripció d'aquesta cerca." + +#. TRANS: Page title when search unsubscription succeeded. +msgid "Unsubscribed" +msgstr "S'ha cancel·lat la subscripció" + +#. TRANS: Error text shown a user tries to track a search query they're already subscribed to. +#, php-format +msgid "You are already tracking the search \"%s\"." +msgstr "Ja esteu seguint la cerca «%s»." + +#. TRANS: Message given having failed to set up a search subscription by track command. +#, php-format +msgid "Could not start a search subscription for query \"%s\"." +msgstr "No s'ha pogut iniciar una subscripció de cerca de la consulta «%s»." + +#. TRANS: Message given having added a search subscription by track command. +#, php-format +msgid "You are subscribed to the search \"%s\"." +msgstr "Esteu subscrit a la cerca «%s»." + +#. TRANS: Plugin description. +msgid "Plugin to allow following all messages with a given search." +msgstr "" +"Connector per permetre seguir tots els missatges d'una cerca determinada." + +#. TRANS: SearchSub plugin menu item on user settings page. +#. TRANS: Sub menu for searches. +msgctxt "MENU" +msgid "Searches" +msgstr "Cerques" + +#. TRANS: SearchSub plugin tooltip for user settings menu item. +msgid "Configure search subscriptions" +msgstr "Configura les subscripcions de cerca" + +#. TRANS: Help message for IM/SMS command "track " +msgctxt "COMMANDHELP" +msgid "Start following notices matching the given search query." +msgstr "" +"Inicia el seguiment d'avisos que coincideixen amb el criteri de cerca donat." + +#. TRANS: Help message for IM/SMS command "untrack " +msgctxt "COMMANDHELP" +msgid "Stop following notices matching the given search query." +msgstr "" +"Atura el seguiment d'avisos que coincideixen amb el criteri de cerca donat." + +#. TRANS: Help message for IM/SMS command "track off" +#. TRANS: Help message for IM/SMS command "untrack all" +msgctxt "COMMANDHELP" +msgid "Disable all tracked search subscriptions." +msgstr "Inhabilita totes les subscripcions de cerca en seguiment." + +#. TRANS: Help message for IM/SMS command "tracks" +#. TRANS: Help message for IM/SMS command "tracking" +msgctxt "COMMANDHELP" +msgid "List all your search subscriptions." +msgstr "Llista totes les vostres subscripcions de cerca." + +#. TRANS: Error text shown a user tries to disable all a search subscriptions with track off command, but has none. +msgid "You are not tracking any searches." +msgstr "No esteu seguint cap cerca." + +#. TRANS: Separator for list of tracked searches. +msgctxt "SEPARATOR" +msgid "\", \"" +msgstr "\", \"" + +#. TRANS: Message given having disabled all search subscriptions with 'track off'. +#. TRANS: %s is a list of searches. Separator default is '", "'. +#, php-format +msgid "You are tracking searches for: \"%s\"." +msgstr "Esteu seguint les cerques de: «%s»." + +#. TRANS: Form legend. +msgid "Subscribe to this search" +msgstr "Subscriu a aquesta cerca" + +#. TRANS: Button text for subscribing to a search. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscriu" + +#. TRANS: Button title for subscribing to a search. +msgid "Subscribe to this search." +msgstr "Subscriviu-vos a la cerca." + +#. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. +#. TRANS: %s is the search for which the subscription removal failed. +#, php-format +msgid "Error disabling search subscription for query \"%s\"." +msgstr "" + +#. TRANS: Message given having disabled all search subscriptions with 'track off'. +msgid "Disabled all your search subscriptions." +msgstr "" diff --git a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po index 035e8c09a3..4cb6c489a0 100644 --- a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:41+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po index b224a0c98a..235bba44a0 100644 --- a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index 7f0feb8394..a5426941ab 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index 735d95b3fb..47297b115a 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index a3f938bfe5..5e256f8475 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index ad05cc2c15..6d67bb638e 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index ac77727e26..7bade7d40c 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:24+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 2ec6e3dbed..883d778ebb 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 f8caaac554..6ee566097c 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:42+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6e04df1bcf..9f6020cc58 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7652a53315..cece9609ba 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d85e813883..c171d03775 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po index b40190e3dc..266b6a647a 100644 --- a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:25+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fi\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 3940daa635..d4d7d464e1 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8a13f316fb..95a35d6fb9 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8f308c8ae0..790dfbb0dc 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0dbf5a0bcb..7fc8fd8b43 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po index fcd17bdc3f..be87ceb1e7 100644 --- a/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/pl/LC_MESSAGES/ShareNotice.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" "Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: pl\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 7af69c5907..3f2ab8ead5 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:43+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d40a037b1e..b7b3120879 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" diff --git a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po index 46bec91726..6bca38ba4b 100644 --- a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tr\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 15c2c61b37..9d2b93db78 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:26+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 438df90825..ea8d30738c 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 2028494e2a..0b960dd2da 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fc695d4d0f..abb1e4c8d6 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 26131b993b..dfdd897a2b 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ea6b9e21f2..edd6d10697 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 76452aae07..9e9f552504 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 70364d32df..77a68ee456 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7ecb0a627c..3f96ff2d18 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 452bc77614..87cd55c3b7 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c6fcd61864..7c1d381ca9 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:44+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 286ecf0e91..2f8a36e288 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 10ffef38dc..8eba959c96 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:27+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3829dc1abf..5777fc1c63 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4ad3f4d6bf..c09809dcf4 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 349642a2bd..82014ae8a0 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e4ca50bfb9..4b94e1b7bd 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 37e0db0b53..342b30bb0b 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7153f22344..c23e259696 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:28+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 383b081405..d196835a0e 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 0c0dcd25fb..cb100737c7 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:46+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 34722742f3..102775284d 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:46+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bde98abfd8..b4a66087d2 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f94c5d6981..f6c6a77744 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:29+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c8883b4c9b..c159513a27 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2aa2df2679..120af3be84 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a46d8c8df1..677d885dfc 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cd85d5401a..7bb97d08ad 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6bd6f224cb..48c6e7b357 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c0efb1ff58..193b59879d 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 fd1418532c..789a321f42 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:47+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c070e8a6a5..c89a1caf29 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" diff --git a/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po new file mode 100644 index 0000000000..296fa01a16 --- /dev/null +++ b/plugins/SlicedFavorites/locale/gl/LC_MESSAGES/SlicedFavorites.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - SlicedFavorites to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SlicedFavorites\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Shows timelines of popular notices for defined subsets of users." +msgstr "" +"Mostra listas de notas populares para os subconxuntos definidos de usuarios." + +#. TRANS: Client exception. +msgid "Unknown favorites slice." +msgstr "Anaco de favoritos descoñecido." diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index 48c1ffd067..917c3539e5 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ad1ef3b4cc..fac6465169 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bd10b90550..1e09bf084a 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b52af46177..8bf83f7505 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:48+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 207af6e6ae..07fbb4a54a 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:30+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e109d11fa6..c9930c77b9 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7e787c1e40..99c61436c2 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0951610b7a..58b3cfa6df 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 99cce90b87..7e8c846896 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 4100f5a4c7..e6ca483d8b 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 47ed3f68b3..66e48da92d 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 83f9863269..7a69137565 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2d855b935c..79b69a18a8 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:31+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 54f8b2c9a9..2d73d54f9a 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5aa4c43dbb..10436a2094 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4f83608bbb..7943f4abf4 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0fffaf55ee..8ec432b067 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:49+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" diff --git a/plugins/Spotify/locale/Spotify.pot b/plugins/Spotify/locale/Spotify.pot index e57d4002fa..edc8f6dbcc 100644 --- a/plugins/Spotify/locale/Spotify.pot +++ b/plugins/Spotify/locale/Spotify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po index c9da778f64..ff1a5349f2 100644 --- a/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" diff --git a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po index b31f8c9d35..738b06aef7 100644 --- a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" diff --git a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po index 2c27ee3de2..7f9e93dd70 100644 --- a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" diff --git a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po index b685620ad2..7aaff92e97 100644 --- a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" diff --git a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po index fab5e42f0f..80b1797670 100644 --- a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" diff --git a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po index 7201cdae1e..a634f6f664 100644 --- a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" diff --git a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po index daa31f7ab9..857ed9f39f 100644 --- a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:32+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:50+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" diff --git a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index f1d14f9f97..4a8c8dc9b4 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/de/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po index ff6e568dd3..d2b3a518bd 100644 --- a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po index ec0c326acf..ba734e4dd5 100644 --- a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po new file mode 100644 index 0000000000..f4438f8c44 --- /dev/null +++ b/plugins/StrictTransportSecurity/locale/gl/LC_MESSAGES/StrictTransportSecurity.po @@ -0,0 +1,31 @@ +# Translation of StatusNet - StrictTransportSecurity to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - StrictTransportSecurity\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "" +"The Strict Transport Security plugin implements the Strict Transport " +"Security header, improving the security of HTTPS only sites." +msgstr "" +"O complemento Strict Transport Security inclúe a cabeceira Strict Transport " +"Security, mellorando a seguridade dos sitios dispoñibles unicamente en HTTPS." diff --git a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po index db6b407c65..b394536d5b 100644 --- a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index d5e1a2a9b6..f1aada4a3a 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8e794fd7af..b3647d581f 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ce858b26ac..c76696ad6a 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b32bda6922..f6fbfb0998 100644 --- a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:53+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c9f47781d3..dbfa7835fd 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:35+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a9340adbe7..cb05fad801 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:36+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" diff --git a/plugins/SubMirror/SubMirrorPlugin.php b/plugins/SubMirror/SubMirrorPlugin.php index ccb32b4a49..95fccabe9d 100644 --- a/plugins/SubMirror/SubMirrorPlugin.php +++ b/plugins/SubMirror/SubMirrorPlugin.php @@ -99,15 +99,16 @@ class SubMirrorPlugin extends Plugin /** * Menu item for personal subscriptions/groups area * - * @param Widget $widget Widget being executed + * @param Action $action action being executed * * @return boolean hook return */ - function onEndSubGroupNav($widget) + function onEndAccountSettingsNav($action) { - $action = $widget->out; $action_name = $action->trimmed('action'); + common_debug("ACTION NAME = " . $action_name); + $action->menuItem(common_local_url('mirrorsettings'), // TRANS: SubMirror plugin menu item on user settings page. _m('MENU', 'Mirroring'), diff --git a/plugins/SubMirror/actions/mirrorsettings.php b/plugins/SubMirror/actions/mirrorsettings.php index 2db7504a64..000d7ecad0 100644 --- a/plugins/SubMirror/actions/mirrorsettings.php +++ b/plugins/SubMirror/actions/mirrorsettings.php @@ -153,10 +153,17 @@ class MirrorSettingsAction extends SettingsAction { } + /** + * Show the local navigation menu + * + * This is the same for all settings, so we show it here. + * + * @return void + */ function showLocalNav() { - $nav = new SubGroupNav($this, common_current_user()); - $nav->show(); + $menu = new SettingsNav($this); + $menu->show(); } function showScripts() diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 1b38ea256b..08da4c74e2 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -102,18 +102,18 @@ msgid "Pull feeds into your timeline!" msgstr "" #. TRANS: SubMirror plugin menu item on user settings page. -#: SubMirrorPlugin.php:113 +#: SubMirrorPlugin.php:114 msgctxt "MENU" msgid "Mirroring" msgstr "" #. TRANS: SubMirror plugin tooltip for user settings menu item. -#: SubMirrorPlugin.php:115 +#: SubMirrorPlugin.php:116 msgid "Configure mirroring of posts from other feeds" msgstr "" #. TRANS: Label in profile statistics section, followed by a count. -#: SubMirrorPlugin.php:187 +#: SubMirrorPlugin.php:188 msgid "Mirrored feeds" msgstr "" diff --git a/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po new file mode 100644 index 0000000000..d59a0f7497 --- /dev/null +++ b/plugins/SubMirror/locale/ca/LC_MESSAGES/SubMirror.po @@ -0,0 +1,164 @@ +# Translation of StatusNet - SubMirror to Catalan (Català) +# Exported from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SubMirror\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:56+0000\n" +"Language-Team: Catalan \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-19 11:23:33+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-submirror\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Client error displayed when entering an invalid URL for a feed. +#. TRANS: %s is the invalid feed URL. +#, php-format +msgid "Invalid feed URL: %s." +msgstr "L'URL del canal no és vàlid: %s." + +#. TRANS: Error message returned to user when setting up feed mirroring, +#. TRANS: but we were unable to resolve the given URL to a working feed. +msgid "Invalid profile for mirroring." +msgstr "" + +#. TRANS: Client error displayed when trying to mirror a StatusNet group feed. +msgid "Cannot mirror a StatusNet group at this time." +msgstr "" + +#. TRANS: Client error displayed when trying to use another method than POST. +msgid "This action only accepts POST requests." +msgstr "" + +#. TRANS: Client error displayed when the session token does not match or is not given. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "No s'ha iniciat una sessió." + +#. TRANS: Page title for subscribed feed mirror. +msgid "Subscribed" +msgstr "Subscrit" + +#. TRANS: Client error displayed when trying to edit an object that is not a feed mirror. +msgid "Requested invalid profile to edit." +msgstr "" + +#. TRANS: Client error displayed when providing invalid input when editing a mirror. +msgid "Bad form data." +msgstr "" + +#. TRANS: Client error thrown when a mirror request is made and no result is retrieved. +msgid "The mirror request failed, because no result was retrieved." +msgstr "" + +#. TRANS: Exception thrown when a feed provider could not be recognised. +msgid "Internal form error: Unrecognized feed provider." +msgstr "" + +#. TRANS: Exception thrown when a subscribing to a feed fails. +msgid "Could not subscribe to feed." +msgstr "No s'ha pogut subscriure al canal." + +#. TRANS: Page title. +msgid "Feed mirror settings" +msgstr "" + +#. TRANS: Page instructions. +msgid "" +"You can mirror updates from many RSS and Atom feeds into your StatusNet " +"timeline!" +msgstr "" + +#. TRANS: Title for page with form to add a mirror feed provider on. +msgid "Provider add" +msgstr "" + +#. TRANS: Plugin description. +msgid "Pull feeds into your timeline!" +msgstr "" + +#. TRANS: SubMirror plugin menu item on user settings page. +msgctxt "MENU" +msgid "Mirroring" +msgstr "" + +#. TRANS: SubMirror plugin tooltip for user settings menu item. +msgid "Configure mirroring of posts from other feeds" +msgstr "" + +#. TRANS: Label in profile statistics section, followed by a count. +msgid "Mirrored feeds" +msgstr "" + +#. TRANS: Field label. +msgid "Web page or feed URL:" +msgstr "Pàgina web o canal URL:" + +#. TRANS: Button text for adding a feed. +#. TRANS: Button text for adding a Twitter feed mirror. +msgctxt "BUTTON" +msgid "Add feed" +msgstr "Afegeix un canal" + +#. TRANS: Field label. +msgid "Twitter username:" +msgstr "Nom d'usuari al Twitter:" + +#. TRANS: Field label (URL expectected). +msgctxt "LABEL" +msgid "Remote feed:" +msgstr "Canal remot:" + +#. TRANS: Field label. +msgctxt "LABEL" +msgid "Local user" +msgstr "Usuari local" + +#. TRANS: Fieldset legend for feed mirror setting. +msgid "Mirroring style" +msgstr "" + +#. TRANS: Feed mirror style (radio button option). +msgid "" +"Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" +msgstr "" + +#. TRANS: Feed mirror style (radio button option). +msgid "Repost the content under my account" +msgstr "" + +#. TRANS: Button text to save feed mirror settings. +msgctxt "BUTTON" +msgid "Save" +msgstr "Desa" + +#. TRANS: Button text to stop mirroring a feed. +msgctxt "BUTTON" +msgid "Stop mirroring" +msgstr "" + +#. TRANS: Name for possible feed provider. +msgid "Twitter" +msgstr "Twitter" + +#. TRANS: Name for possible feed provider. +msgid "RSS or Atom feed" +msgstr "Canal RSS o Atom" + +#. TRANS: Heading for feed mirroring selection form. +msgid "Select a feed provider" +msgstr "Seleccioneu un proveïdor de canals" diff --git a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po index 191ba41ef6..d3ff193a51 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -4,6 +4,7 @@ # Author: Fujnky # Author: Giftpflanze # Author: MF-Warburg +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" @@ -65,10 +67,12 @@ msgstr "Ungültige Formulardaten." #. TRANS: Client error thrown when a mirror request is made and no result is retrieved. msgid "The mirror request failed, because no result was retrieved." msgstr "" +"Die Spiegel-Anforderung ist fehlgeschlagen, weil kein Ergebnis abgerufen " +"wurde." #. TRANS: Exception thrown when a feed provider could not be recognised. msgid "Internal form error: Unrecognized feed provider." -msgstr "" +msgstr "Interner Formfehler: Unerkannter Feed-Provider." #. TRANS: Exception thrown when a subscribing to a feed fails. msgid "Could not subscribe to feed." @@ -136,7 +140,6 @@ msgid "Mirroring style" msgstr "Spiegelungs-Stil" #. TRANS: Feed mirror style (radio button option). -#, fuzzy msgid "" "Repeat: reference the original user's post (sometimes shows as \"RT @blah\")" msgstr "" @@ -148,13 +151,11 @@ msgid "Repost the content under my account" msgstr "Den Inhalt mit meinem Konto erneut posten" #. TRANS: Button text to save feed mirror settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Speichern" #. TRANS: Button text to stop mirroring a feed. -#, fuzzy msgctxt "BUTTON" msgid "Stop mirroring" msgstr "Mit dem Spiegeln aufhören" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 8470b2ea77..d9af452bfd 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -12,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e4e887485c..5c48789301 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 23094a1df5..e6989e28e5 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 765b9799c5..b7f91a8dad 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d0b8d2f5c2..c06ee3c1fd 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b20e71440a..a527cfd482 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:38+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0ec955b8b3..52756e1bd1 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ca/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po index 3ea938f18c..a73b7703a6 100644 --- a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" @@ -31,4 +32,4 @@ msgstr "Masses pertinències. Prengueu alè i torneu-ho a provar més endavant." #. TRANS: Plugin description. msgid "Configurable limits for subscriptions and group memberships." -msgstr "" +msgstr "Configura els límits de subscripció i pertinència a grups." diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index a3af60a374..96602387a7 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index df8b54941b..c63d16bd0d 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po index 38e4c36a5b..5f2ad057e1 100644 --- a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index 369c679f7f..f85f7b963d 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 34a2987794..14853032ad 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fe3abfcb71..2ee7f699ad 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0d34956ef8..b382a137c7 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6338b0a57b..3a739e0022 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:39+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2461381560..13204a3eac 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 00da073c26..f159436a91 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 933fa5c71b..13af840a80 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po index 19030d7c7b..a561ec8065 100644 --- a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\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 b0e625422d..211159cba7 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0970d74f88..55abb71758 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 af1bab44d3..b75ddd6bc8 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 749cdc37c5..886847f1fa 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:58+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f8bbe59769..25f5183bed 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 eed3bb8485..49314254c4 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 86daf4ed22..0fff9d1a61 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:40+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bda6fc8979..9d1c491960 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ec577d29ba..119b564eb4 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" diff --git a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po index 04561f783f..b51a638fe0 100644 --- a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nn\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 e2260665a3..d7d1d5021b 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 45d1ca14a2..df10903670 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8558ac49fd..7b19a0c9e9 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:41+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:06:59+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 189c42738b..a0aa9a0538 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po index 3971d7bb6d..a4fbaa884f 100644 --- a/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ar/LC_MESSAGES/TagSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po index 8f6508065d..05301e1faf 100644 --- a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -81,7 +82,7 @@ msgstr "" #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." -msgstr "" +msgstr "No s'ha iniciat una sessió." #. TRANS: Client error displayed trying to subscribe to a non-existing profile. msgid "No such profile." @@ -95,7 +96,7 @@ msgstr "Subscrit." #. TRANS: %s is a user nickname. #, php-format msgid "%s's tag subscriptions" -msgstr "" +msgstr "Subscripcions d'etiqueta de %s" #. TRANS: Header for subscriptions overview for a user (not first page). #. TRANS: %1$s is a user nickname, %2$d is the page number. @@ -132,10 +133,10 @@ msgstr "" #. TRANS: as an anonymous user. %s is the user nickname. #, php-format msgid "%s is not following any tags." -msgstr "" +msgstr "%s no està seguint cap etiqueta." #. TRANS: %1$s is a URL to a tag, %2$s is a tag, #. TRANS: %3$s a date string. #, php-format msgid "#%2$s since %3$s" -msgstr "" +msgstr "#%2$s des de %3$s" diff --git a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po index eef8e965fe..4c6603fc98 100644 --- a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: Giftpflanze +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -31,9 +33,8 @@ msgid "Unsubscribe" msgstr "Abbestellen" #. TRANS: Submit button title to unsubscribe from a tag. -#, fuzzy msgid "Unsubscribe from this tag." -msgstr "Dieses Tag abbestellen" +msgstr "Dieses Tag abbestellen." #. TRANS: Plugin description. msgid "Plugin to allow following all messages with a given tag." @@ -63,9 +64,8 @@ msgid "Subscribe" msgstr "Abonnieren" #. TRANS: Submit button title to subscribe to a tag. -#, fuzzy msgid "Subscribe to this tag." -msgstr "Dieses Tag abonnieren" +msgstr "Dieses Tag abonnieren." #. TRANS: Page title when tag unsubscription succeeded. msgid "Unsubscribed" @@ -141,12 +141,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not following any tags." msgstr "%s verfolgt keine Tags." #. TRANS: %1$s is a URL to a tag, %2$s is a tag, #. TRANS: %3$s a date string. -#, fuzzy, php-format +#, php-format msgid "#%2$s since %3$s" -msgstr "#%s seit %s" +msgstr "#%2$s seit %3$s" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index 86889e78ba..116d6d5cb8 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index 56a665da55..7893558aa4 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index a246980c9f..9097dbeb7b 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po index 7696135444..a17a34cd50 100644 --- a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" "Language-Team: Serbian (Cyrillic script) \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: sr-ec\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" @@ -140,12 +141,12 @@ msgstr "" #. TRANS: than the logged in user that has no tag subscriptions. %s is the user nickname. #. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none #. TRANS: as an anonymous user. %s is the user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not following any tags." -msgstr "%s не слуша ниједну ознаку." +msgstr "%s не прати ниједну ознаку." #. TRANS: %1$s is a URL to a tag, %2$s is a tag, #. TRANS: %3$s a date string. -#, fuzzy, php-format +#, php-format msgid "#%2$s since %3$s" -msgstr "#%s од %s" +msgstr "#%2$s од %3$s" diff --git a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po index 4372e010ce..f10699bbe5 100644 --- a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index 04c20ba4af..d90a9fdca8 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:01+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index 379417cc12..a99d2fc276 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:43+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index c7150f0351..2dd60311ee 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 503941506a..8e02f84226 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f70bfcdfee..a190f579b5 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b6521e0813..14b4c9dd00 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7492e0ecc7..689b29440f 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b97823de83..9101c1092d 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e96fbb45f9..2a0db6c3c8 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7bd11b39f5..eb41e989c1 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 37bd35c549..1fe3da647a 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 207281a051..c6aad5b972 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b18b594dba..4aaf92ce62 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:02+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 97e6fb6472..3ba3c739de 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f1f7148698..359ba57fd0 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 02ccc644f2..22a9c9d51d 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 8d6d4cb9d6..48c67127bc 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:44+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 62bf0778c1..c34fbceff2 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 982cb55602..a41e729c70 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 953014723f..0e5c1efefb 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 23bff8d246..9e00303bb9 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 3457a25dd4..101a113b36 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po index 41566bafc9..516adfb2b2 100644 --- a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\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 255b797054..8477174b59 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 880a0c5c1b..36494fc981 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:03+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9e7e4361ee..44ab603f27 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" diff --git a/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po new file mode 100644 index 0000000000..779f5d9c7c --- /dev/null +++ b/plugins/TinyMCE/locale/gl/LC_MESSAGES/TinyMCE.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - TinyMCE to Galician (Galego) +# Exported from translatewiki.net +# +# Author: Toliño +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - TinyMCE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" +"Language-Team: Galician \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" +"X-Translation-Project: translatewiki.net at https://translatewiki.net\n" +"X-Language-Code: gl\n" +"X-Message-Group: #out-statusnet-plugin-tinymce\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Use TinyMCE library to allow rich text editing in the browser." +msgstr "" +"Usar a biblioteca TinyMCE para permitir a edición de texto enriquecido no " +"navegador." diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index 8319d16515..64d56c3f3b 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1150ae4b5e..23848b0ff9 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5203f5494d..5a04705085 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0a02bf29cd..0013b1efbd 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3593a5414e..4388cde5d6 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:45+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:04+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ea44e48efb..8ba17f964b 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 37320b7ca7..3acf346269 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 776dcdfa12..f2be69d6da 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 796a12299b..4520b280c5 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 95b24192da..47fa2ddd36 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c1be41f672..a15cdc7616 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 376e68040d..af65457dad 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:46+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 da76b5d278..8ac1d6626d 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po index 88a4b8d14e..c91507da9c 100644 --- a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po @@ -1,6 +1,7 @@ # Translation of StatusNet - TwitterBridge to Arabic (العربية) # Exported from translatewiki.net # +# Author: Majid Al-Dharrab # Author: OsamaK # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -429,8 +431,8 @@ msgid "" "Regards,\n" "%3$s" msgstr "" -"مرحبا، %1$s. يؤسفنا إخبارك أنه تم تعطيل ارتباطك بتويتر. يبدو أنه لم يعد يسمح " -"لنا بتحديث حالتك على تويتر. هل قمت بإلغاء السماح ل%3$s؟\n" +"مرحبًا يا %1$s. يؤسفنا إخبارك أن ارتباطك بتويتر قد عُطّل. يبدو أنه لم يعد يسمح " +"لنا بتحديث حالتك على تويتر. هل ألغيت السماح ل%3$s؟\n" "\n" "يمكنك إعادة تفعيل جسر تويتر بزيارة صفحة إعدادات تويتر:\n" "\n" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index b29813f686..7e5f482a6a 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -47,13 +48,13 @@ msgstr "Desconnecta el meu compte del Twitter" #. TRANS: Form guide. %s is a URL to the password settings. #. TRANS: This message contains a Markdown link in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Disconnecting your Twitter account could make it impossible to log in! " "Please [set a password](%s) first." msgstr "" -"En desconnectar el vostre Twitter podeu impossibilitar que torneu a iniciar " -"una sessió! " +"En desconnectar el vostre Twitter podeu fer que no pogueu tornar a iniciar " +"una sessió! [Definiu-ne una contrasenya](%s) abans de res." #. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format @@ -65,7 +66,6 @@ msgstr "" "emprar la vostra contrasenya %1$s per iniciar una sessió." #. TRANS: Button text for disconnecting a Twitter account. -#, fuzzy msgctxt "BUTTON" msgid "Disconnect" msgstr "Desconnecta" @@ -92,13 +92,11 @@ msgstr "Importa la línia temporal d'amics." #. TRANS: Button text for saving Twitter integration settings. #. TRANS: Button text for saving the administrative Twitter bridge settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Desa" #. TRANS: Button text for adding Twitter integration. -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Afegeix" @@ -118,16 +116,14 @@ msgid "No Twitter connection to remove." msgstr "No hi ha cap connexió del Twitter a suprimir." #. TRANS: Server error displayed when trying to remove a connected Twitter account fails. -#, fuzzy msgid "Could not remove Twitter user." -msgstr "No s'ha pogut suprimir l'usuari del Twitter." +msgstr "No s'ha pogut eliminar l'usuari del Twitter." #. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." msgstr "S'ha desconnectat el compte del Twitter." #. TRANS: Server error displayed when saving Twitter integration preferences fails. -#, fuzzy msgid "Could not save Twitter preferences." msgstr "No s'han pogut desar les preferències del Twitter." @@ -148,14 +144,13 @@ msgid "Could not link your Twitter account." msgstr "No s'ha pogut enllaçar amb el compte del Twitter." #. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. -#, fuzzy msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" -"No s'ha pogut enllaçar amb el vostre compte del Twitter: no coincidència de " -"l'oath_token." +"No s'ha pogut enllaçar amb el vostre compte del Twitter: no hi ha " +"coincidència de l'oath_token." #. TRANS: Page instruction. %s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "" "This is the first time you have logged into %s so we must connect your " "Twitter account to a local account. You can either create a new account, or " @@ -226,7 +221,7 @@ msgstr "Contrasenya" #. TRANS: Fieldset legend. msgid "License" -msgstr "" +msgstr "Llicència" #. TRANS: Text for license agreement checkbox. #. TRANS: %s is the license as configured for the StatusNet site. @@ -275,7 +270,6 @@ msgid "Invalid username or password." msgstr "Nom d'usuari o contrasenya no vàlida." #. TRANS: Page title for Twitter administration panel. -#, fuzzy msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" @@ -285,15 +279,13 @@ msgid "Twitter bridge settings" msgstr "Paràmetres del pont del Twitter" #. TRANS: Client error displayed when a consumer key is invalid because it is too long. -#, fuzzy msgid "Invalid consumer key. Maximum length is 255 characters." -msgstr "Clau de consumidor no vàlida. La llargada màxima és 255 caràcters." +msgstr "Clau de consumidor no vàlida. La longitud màxima és 255 caràcters." #. TRANS: Client error displayed when a consumer secret is invalid because it is too long. -#, fuzzy msgid "Invalid consumer secret. Maximum length is 255 characters." msgstr "" -"Clau secreta de consumidor no vàlida. La llargada màxima és 255 caràcters." +"Clau secreta de consumidor no vàlida. La longitud màxima és 255 caràcters." #. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" @@ -304,32 +296,28 @@ msgid "Consumer key" msgstr "Clau de consumidor" #. TRANS: Field title for Twitter assigned consumer key. -#, fuzzy msgid "The consumer key assigned by Twitter." -msgstr "Clau de consumidor assignada pel Twitter" +msgstr "Clau de consumidor assignada pel Twitter." #. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Clau secreta de consumidor" #. TRANS: Field title for Twitter assigned consumer secret. -#, fuzzy msgid "The consumer secret assigned by Twitter." -msgstr "Clau secreta de consumidor assignada pel Twitter" +msgstr "Clau secreta de consumidor assignada pel Twitter." #. TRANS: Form guide displayed when two required fields have already been provided. -#, fuzzy msgid "Note: A global consumer key and secret are set." -msgstr "Nota: es defineixen una clau pública i secreta de consumidor." +msgstr "Nota: es defineix una clau pública i secreta de consumidor global." #. TRANS: Field label for Twitter application name. msgid "Integration source" msgstr "Font d'integració" #. TRANS: Field title for Twitter application name. -#, fuzzy msgid "The name of your Twitter application." -msgstr "Nom de la vostra aplicació del Twitter" +msgstr "El nom de la vostra aplicació del Twitter." #. TRANS: Fieldset legend for Twitter integration options. msgid "Options" @@ -340,9 +328,8 @@ msgid "Enable \"Sign-in with Twitter\"" msgstr "Habilita l'inici de sessió amb el Twitter" #. TRANS: Checkbox title. -#, fuzzy msgid "This allow users to login with their Twitter credentials." -msgstr "Permet als usuaris iniciar una sessió amb les credencials del Twitter" +msgstr "Permet als usuaris iniciar una sessió amb les credencials del Twitter." #. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" @@ -357,9 +344,8 @@ msgstr "" "que es configurin els dimonis manualment." #. TRANS: Button title for saving the administrative Twitter bridge settings. -#, fuzzy msgid "Save the Twitter bridge settings." -msgstr "Paràmetres del pont del Twitter" +msgstr "Desa els paràmetres del pont del Twitter." #. TRANS: Server exception thrown when an invalid URL scheme is detected. msgid "Invalid URL scheme for HTTP stream reader." diff --git a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index 06fb603854..a0db84d405 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -6,6 +6,7 @@ # Author: Habi # Author: Marcel083 # Author: Michael +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -13,13 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:51+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -51,13 +53,13 @@ msgstr "Trenne mein Konto von Twitter" #. TRANS: Form guide. %s is a URL to the password settings. #. TRANS: This message contains a Markdown link in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Disconnecting your Twitter account could make it impossible to log in! " "Please [set a password](%s) first." msgstr "" -"Die Trennung von Twitter könnte es unmöglich machen, sich anzumelden! Bitte " -"erst [ein Kennwort] (%s) festlegen." +"Die Trennung von deinem Twitterkonto könnte es unmöglich machen, sich " +"anzumelden! Bitte erst [ein Kennwort festlegen](%s)." #. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format @@ -69,7 +71,6 @@ msgstr "" "Passwort benutzen, um dich anzumelden." #. TRANS: Button text for disconnecting a Twitter account. -#, fuzzy msgctxt "BUTTON" msgid "Disconnect" msgstr "Trennen" @@ -96,13 +97,11 @@ msgstr "Importiere meine Freundezeitleiste." #. TRANS: Button text for saving Twitter integration settings. #. TRANS: Button text for saving the administrative Twitter bridge settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Speichern" #. TRANS: Button text for adding Twitter integration. -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "Hinzufügen" @@ -121,7 +120,6 @@ msgid "No Twitter connection to remove." msgstr "Keine Twitterverbindung zu entfernen." #. TRANS: Server error displayed when trying to remove a connected Twitter account fails. -#, fuzzy msgid "Could not remove Twitter user." msgstr "Konnte Twitterbenutzer nicht entfernen." @@ -130,7 +128,6 @@ msgid "Twitter account disconnected." msgstr "Twitterkonto getrennt." #. TRANS: Server error displayed when saving Twitter integration preferences fails. -#, fuzzy msgid "Could not save Twitter preferences." msgstr "Konnte Twittereinstellungen nicht speichern." @@ -151,14 +148,13 @@ msgid "Could not link your Twitter account." msgstr "Konnte nicht mit deinem Twitterkonto verbinden." #. TRANS: Server error displayed when linking to a Twitter account fails because of an incorrect oauth_token. -#, fuzzy msgid "Could not link your Twitter account: oauth_token mismatch." msgstr "" "Konnte nicht mit deinem Twitterkonto verbinden: oauth_token passt nicht " "zusammen." #. TRANS: Page instruction. %s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "" "This is the first time you have logged into %s so we must connect your " "Twitter account to a local account. You can either create a new account, or " @@ -205,7 +201,6 @@ msgstr "" "Nur für Updates, Bekanntmachungen und Passwortwiederherstellung verwendet" #. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. -#, fuzzy msgctxt "BUTTON" msgid "Create" msgstr "Erstellen" @@ -232,7 +227,7 @@ msgstr "Passwort" #. TRANS: Fieldset legend. msgid "License" -msgstr "" +msgstr "Lizenz" #. TRANS: Text for license agreement checkbox. #. TRANS: %s is the license as configured for the StatusNet site. @@ -245,7 +240,6 @@ msgstr "" "sind unter %s verfügbar." #. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. -#, fuzzy msgctxt "BUTTON" msgid "Connect" msgstr "Verbinden" @@ -281,7 +275,6 @@ msgid "Invalid username or password." msgstr "Ungültiger Benutzername oder ungültiges Passwort." #. TRANS: Page title for Twitter administration panel. -#, fuzzy msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" @@ -291,14 +284,12 @@ msgid "Twitter bridge settings" msgstr "Einstellungen für Twitterüberbrückung" #. TRANS: Client error displayed when a consumer key is invalid because it is too long. -#, fuzzy msgid "Invalid consumer key. Maximum length is 255 characters." -msgstr "Ungültiger Verbraucherschlüssel. Maximallänge beträgt 255 Zeichen." +msgstr "Ungültiger Verbraucherschlüssel. Maximale Länge beträgt 255 Zeichen." #. TRANS: Client error displayed when a consumer secret is invalid because it is too long. -#, fuzzy msgid "Invalid consumer secret. Maximum length is 255 characters." -msgstr "Ungültiges Verbrauchergeheimnis. Maximallänge beträgt 255 Zeichen." +msgstr "Ungültiges Verbrauchergeheimnis. Maximale Länge beträgt 255 Zeichen." #. TRANS: Fieldset legend for Twitter application settings. msgid "Twitter application settings" @@ -309,24 +300,21 @@ msgid "Consumer key" msgstr "Verbraucherschlüssel" #. TRANS: Field title for Twitter assigned consumer key. -#, fuzzy msgid "The consumer key assigned by Twitter." -msgstr "Von Twitter vergebener Verbraucherschlüssel" +msgstr "Von Twitter vergebener Verbraucherschlüssel." #. TRANS: Field label for Twitter assigned consumer secret. msgid "Consumer secret" msgstr "Verbrauchergeheimnis" #. TRANS: Field title for Twitter assigned consumer secret. -#, fuzzy msgid "The consumer secret assigned by Twitter." -msgstr "Von Twitter vergebenes Verbrauchergeheimnis" +msgstr "Von Twitter vergebenes Verbrauchergeheimnis." #. TRANS: Form guide displayed when two required fields have already been provided. -#, fuzzy msgid "Note: A global consumer key and secret are set." msgstr "" -"Hinweis: Globaler Verbraucherschlüssel und globals Verbrauchergeheimnis " +"Hinweis: Globaler Verbraucherschlüssel und globales Verbrauchergeheimnis " "gesetzt." #. TRANS: Field label for Twitter application name. @@ -334,9 +322,8 @@ msgid "Integration source" msgstr "Integrationsquelle" #. TRANS: Field title for Twitter application name. -#, fuzzy msgid "The name of your Twitter application." -msgstr "Name deiner Twitteranwendung" +msgstr "Name deiner Twitteranwendung." #. TRANS: Fieldset legend for Twitter integration options. msgid "Options" @@ -347,9 +334,8 @@ msgid "Enable \"Sign-in with Twitter\"" msgstr "Ermögliche „Anmelden mit Twitter“" #. TRANS: Checkbox title. -#, fuzzy msgid "This allow users to login with their Twitter credentials." -msgstr "Ermögliche Benutzern, sich mit ihren Twitteranmeldedaten anzumelden" +msgstr "Ermöglicht Benutzern, sich mit ihren Twitteranmeldedaten anzumelden." #. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" @@ -364,13 +350,12 @@ msgstr "" "Erfordert, dass Dämons manuell konfiguriert werden." #. TRANS: Button title for saving the administrative Twitter bridge settings. -#, fuzzy msgid "Save the Twitter bridge settings." -msgstr "Einstellungen für Twitterüberbrückung" +msgstr "Einstellungen für Twitterüberbrückung speichern." #. TRANS: Server exception thrown when an invalid URL scheme is detected. msgid "Invalid URL scheme for HTTP stream reader." -msgstr "" +msgstr "Ungültiges URL-Schema für den HTTP-Stream-Reader." #. TRANS: Exception thrown when input from an inexpected socket is encountered. msgid "Got input from unexpected socket!" @@ -380,37 +365,35 @@ msgstr "" #. TRANS: %s is the invalid state. #, php-format msgid "Invalid state in handleLine: %s." -msgstr "" +msgstr "Ungültiger Status der HandleZeile: %s." #. TRANS: Exception thrown when an invalid response line is encountered. #. TRANS: %s is the invalid line. #, php-format msgid "Invalid HTTP response line: %s." -msgstr "" +msgstr "Ungültige HTTP-Antwortzeile: %s." #. TRANS: Exception thrown when an invalid response line part is encountered. #. TRANS: %1$s is the chunk, %2$s is the line. #, php-format msgid "Invalid HTTP response line chunk \"%1$s\": %2$s." -msgstr "" +msgstr "Ungültiges HTTP-Antwortzeilenstück „%1$s“: %2$s." #. TRANS: Exception thrown when an invalid response code is encountered. #. TRANS: %1$s is the response code, %2$s is the line. #, php-format msgid "Bad HTTP response code %1$s: %2$s." -msgstr "" +msgstr "Falscher HTTP-Antwortcode %1$s: %2$s." #. TRANS: Menu item in login navigation. #. TRANS: Menu item in connection settings navigation. -#, fuzzy msgctxt "MENU" msgid "Twitter" msgstr "Twitter" #. TRANS: Title for menu item in login navigation. -#, fuzzy msgid "Login or register using Twitter." -msgstr "Anmeldung oder Registrierung, um Twitter zu benutzen" +msgstr "Mit Twitter anmelden oder registrieren." #. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" @@ -421,9 +404,8 @@ msgid "Twitter" msgstr "Twitter" #. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. -#, fuzzy msgid "Twitter bridge configuration page." -msgstr "Konfiguration der Twitterüberbrückung" +msgstr "Konfigurationsseite der Twitterüberbrückung." #. TRANS: Plugin description. msgid "" @@ -438,10 +420,9 @@ msgid "Already logged in." msgstr "Schon angemeldet." #. TRANS: Title for login using Twitter page. -#, fuzzy msgctxt "TITLE" msgid "Twitter Login" -msgstr "Twitter Login" +msgstr "Twitter-Login" #. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index d560e1cec4..47cb417ac4 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -3,6 +3,7 @@ # # Author: Od1n # Author: Peter17 +# Author: Valeryan 24 # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -11,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -94,10 +96,9 @@ msgstr "Importer l’agenda de mes amis." #. TRANS: Button text for saving Twitter integration settings. #. TRANS: Button text for saving the administrative Twitter bridge settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" -msgstr "Sauvegarder" +msgstr "Enregistrer" #. TRANS: Button text for adding Twitter integration. #, fuzzy diff --git a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po index 0cf7d84104..e2e4b5265e 100644 --- a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fur\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 dc57982ead..e7637c71ad 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -217,7 +218,7 @@ msgstr "Contrasigno" #. TRANS: Fieldset legend. msgid "License" -msgstr "" +msgstr "Licentia" #. TRANS: Text for license agreement checkbox. #. TRANS: %s is the license as configured for the StatusNet site. diff --git a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po index fdca06bc25..7c8a617938 100644 --- a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:10+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ko\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 33d113eecb..3d655bfadf 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -217,7 +218,7 @@ msgstr "Лозинка" #. TRANS: Fieldset legend. msgid "License" -msgstr "" +msgstr "Лиценца" #. TRANS: Text for license agreement checkbox. #. TRANS: %s is the license as configured for the StatusNet site. diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index 7f89c4911a..3809adbbe0 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:11+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 136932d483..f6b0a83fbe 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -219,7 +220,7 @@ msgstr "Wachtwoord" #. TRANS: Fieldset legend. msgid "License" -msgstr "" +msgstr "Licentie" #. TRANS: Text for license agreement checkbox. #. TRANS: %s is the license as configured for the StatusNet site. diff --git a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index 6439bddeee..4aabe5e42a 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4d050c6377..9ee4510778 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:52+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:11+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 73c92c6530..93ef9e650c 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 be3ee11a13..437efad1d4 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -11,14 +11,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:53+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-POT-Import-Date: 2011-09-25 22:08:46+0000\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 782dd7899c..eec1061776 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/ar/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po index 415482c036..3f4bd92a6d 100644 --- a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 6f5ce4d786..38aa810597 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 aa0f122047..07df027d83 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f5cdd4f26b..1490209763 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d1308a8abf..4212a96c3e 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d923ff1bd4..f05d1d86fd 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 98fba62478..d4dd7eb9d4 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fddea6d320..4a7ce81178 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:13+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 093a744df0..36c81dba68 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:54+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 0d2e881203..705e8ca980 100644 --- a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 455c49dd80..e760bc3e5c 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 3d1b7950a1..bd9ef95638 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 95504f1c6d..97d78e30f5 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 a2f97b2d6c..077e3f5891 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c1c2ad2c14..3a1c1e83dd 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 fe585dc728..cf3914e609 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 375aa8928a..416ffed51f 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 596bff862f..bb5aa7fec9 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2687160a2c..23e8b2c9f0 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4c18bbcadf..5986c54573 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:55+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 eb1f8c96c9..79b377a999 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 102743aea0..ca1e32b3c2 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 df153d61bc..0658894c1b 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 35411d9ff4..17e853550e 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:14+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d27fed7c6d..93c60de289 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f840020024..162285322a 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6c88c7555a..4f338de7a1 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 5a0c689087..e967595898 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9a57472962..fbcfdeab51 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7f80b31f95..23e3ffc301 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6983424819..691972a2c0 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 ef6381e729..56c3c2ebc3 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7783245508..2976e5860f 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:15+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2b7d0f3e35..1ad517c065 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:56+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9d4452bf0d..2e48b77b95 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/de/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po index 8fc86f247d..b4dedafb2a 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 1ea599232f..ab797b875f 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d11b628162..c41ba40aad 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 bc27e92e78..a190f1cfdc 100644 --- a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:16+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 63328d5e94..f35aa55f70 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2c3eef415b..d884d4739e 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 b998cfc904..067700435c 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:57+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 715956af1d..02a65bbb37 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/de/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po index e71f017d85..89bf6395de 100644 --- a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index f5b4a22a88..5044025cfc 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 31e9419071..d5ec48bb4a 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 49dc9c8a87..87d0a1b950 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c66b7baae7..b01e2d7dfa 100644 --- a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7e722ad175..8dfc117d59 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9e753a3bde..d8e59c57eb 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e9ad32517a..a9988a7380 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 51a78eb259..18cfe1d66d 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:17+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 4126b1df90..e3a44bcced 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:58+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c054cc3f1a..1b2d539409 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 a4767b86f7..754fc10027 100644 --- a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" "Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 f0f55368fc..cde956d3f7 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" diff --git a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po index 8369f9dd5a..42665eef7a 100644 --- a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\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 39da392492..bec0ca69ae 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e9a36e15e3..a56959103d 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 e2e3f8442d..538669fe25 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 42d54dbda5..895ff26a0e 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6176140929..a45a5cd0e9 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 25a5957851..9e2510a9b5 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7645981e2d..f34443af68 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" "Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 d24910d6f1..6b6565730b 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 c3b78412aa..0fd4a3918e 100644 --- a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 2ecd90ce56..950723a469 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 1bb42adf67..6f3ac9953e 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 825a81d0bb..70df6c8b0d 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:18+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 74fce8d2ad..fb2771a626 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,14 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:18+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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cf67245a18..c3d934f85e 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:45:59+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 6c03bc5a94..cb7e110cb9 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 46e546918f..d273856b1a 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:19+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 9421c23894..a7d2b65fbb 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:00+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 61ecb30b98..9b1edcd902 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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/de/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po index 23add06712..aeaaad735a 100644 --- a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po @@ -4,6 +4,7 @@ # Author: Giftpflanze # Author: Habi # Author: Inkowik +# Author: Tiin # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,13 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" @@ -34,7 +36,7 @@ msgstr "XMPP/Jabber/GTalk" #. TRANS: Exception thrown when using too many @ signs in a Jabber ID. msgid "Invalid JID: too many @s." -msgstr "" +msgstr "Ungültige JID: zu viele @s." #. TRANS: Exception thrown when using @ sign not followed by a Jabber ID. msgid "Invalid JID: @ but no node" @@ -52,19 +54,19 @@ msgstr "" #. TRANS: Exception thrown when using too long a Jabber domain (>1023). msgid "Invalid JID: domain too long." -msgstr "" +msgstr "Ungültige JID: Domain zu lang." #. TRANS: Exception thrown when using an invalid Jabber domain name. #. TRANS: %s is the invalid domain name. #, php-format msgid "Invalid JID domain name \"%s\"." -msgstr "" +msgstr "Ungültiger JID-Domainname „%s“." #. TRANS: Exception thrown when using an invalid Jabber resource. #. TRANS: %s is the invalid resource. #, php-format msgid "Invalid JID resource \"%s\"." -msgstr "" +msgstr "Ungültige JID-Quelle „%s“." #. TRANS: Link description to notice in conversation. #. TRANS: %s is a notice ID. diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index daf85ce286..3bcc1dc720 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7e6391867a..f46d1be274 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\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 9118bbddbd..6ee96eb6c3 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:01+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 4424ad83b2..098af59e60 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-09-25 21:42+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\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 87bac3d7ca..f1df2f5bcb 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po index 6d6c3f1e29..bdd5f40bec 100644 --- a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po @@ -4,6 +4,7 @@ # Author: George Animal # Author: Giftpflanze # Author: Habi +# Author: Tiin # Author: Welathêja # -- # This file is distributed under the same license as the StatusNet package. @@ -12,13 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:24+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -61,15 +63,13 @@ msgid "Yammer import" msgstr "Yammer-Import" #. TRANS: Menu item for Yammer import. -#, fuzzy msgctxt "MENU" msgid "Yammer" msgstr "Yammer" #. TRANS: Menu item title for Yammer import. -#, fuzzy msgid "Yammer import module." -msgstr "Yammer-Import" +msgstr "Yammer-Import-Modul" #. TRANS: Exception thrown when a non-user item type is used, but expected. msgid "Wrong item type sent to Yammer user import processing." diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index 8bcdd25d5e..5dbf7ebfa8 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -11,13 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index d9049a63a6..7689dd9a31 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 7d3d893d42..85378aa2f3 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:05+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index ccda321d74..d0c2420bde 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,13 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: nl\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 5ce97a7219..ea9330b573 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:25+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 65f8119020..23776adb86 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07:25+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://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 cef961eb6e..aeb3b6a240 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-25 21:42+0000\n" -"PO-Revision-Date: 2011-09-25 21:46:06+0000\n" +"POT-Creation-Date: 2011-11-11 15:03+0000\n" +"PO-Revision-Date: 2011-11-11 15:07: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r98079); Translate extension (2011-09-22)\n" +"X-Generator: MediaWiki 1.19alpha (r102787); Translate extension (2011-10-" +"30)\n" "X-Translation-Project: translatewiki.net at https://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" diff --git a/scripts/move_status_network.sh b/scripts/move_status_network.sh new file mode 100755 index 0000000000..2a259c280a --- /dev/null +++ b/scripts/move_status_network.sh @@ -0,0 +1,102 @@ +#!/bin/bash + +# live fast! die young! + +set -e + +# move_status_network.sh nickname newserver + +export nickname="$1" +export newdbhost="$2" + +source /etc/statusnet/setup.cfg + +function set_maintenance_mode() +{ + local nickname=$1; + + php $PHPBASE/scripts/settag.php $nickname maintenancemode; +} + +function get_current_db_info() +{ + local nickname=$1; + + #FIXME I couldn't make this work better + + export dbhost=`mysql -NB -h $SITEDBHOSTNAME -u $ADMIN --password=$ADMINPASS -e "SELECT dbhost FROM status_network WHERE nickname = '$nickname'" $SITEDB` + export dbuser=`mysql -NB -h $SITEDBHOSTNAME -u $ADMIN --password=$ADMINPASS -e "SELECT dbuser FROM status_network WHERE nickname = '$nickname'" $SITEDB` + export dbpass=`mysql -NB -h $SITEDBHOSTNAME -u $ADMIN --password=$ADMINPASS -e "SELECT dbpass FROM status_network WHERE nickname = '$nickname'" $SITEDB` + export dbname=`mysql -NB -h $SITEDBHOSTNAME -u $ADMIN --password=$ADMINPASS -e "SELECT dbname FROM status_network WHERE nickname = '$nickname'" $SITEDB` +} + +function create_empty_db() +{ + local newdbhost=$1; + local dbuser=$2; + local dbpass=$3; + local dbname=$4; + + mysqladmin -h $newdbhost -u $ADMIN --password=$ADMINPASS create $dbname; + + mysql -h $newdbhost -u $ADMIN --password=$ADMINPASS -e "GRANT ALL ON $dbname.* TO '$dbuser'@'localhost' IDENTIFIED BY '$dbpass';" $dbname; + mysql -h $newdbhost -u $ADMIN --password=$ADMINPASS -e "GRANT ALL ON $dbname.* TO '$dbuser'@'%' IDENTIFIED BY '$dbpass';" $dbname; +} + +function transfer_data() +{ + local dbhost=$1; + local newdbhost=$2; + local dbuser=$3; + local dbpass=$4; + local dbname=$5; + local dumpfile=`mktemp`; + + mysqldump -h $dbhost -u $ADMIN --password=$ADMINPASS $dbname > $dumpfile; + mysql -h $newdbhost -u $ADMIN --password=$ADMINPASS $dbname < $dumpfile; + rm $dumpfile; +} + +function update_routing_table() +{ + local nickname=$1; + local newdbhost=$2; + + mysql -h $SITEDBHOSTNAME -u $ADMIN --password=$ADMINPASS -e "UPDATE status_network set dbhost = '$newdbhost' where nickname = '$nickname'" $SITEDB +} + +function flush_site() +{ + local nickname=$1; + + php $PHPBASE/scripts/flushsite.php -s$nickname.$WILDCARD +} + +function unset_maintenance_mode() +{ + local nickname=$1; + + php $PHPBASE/scripts/settag.php -d $nickname maintenancemode; +} + +echo -n Setting maintenance mode on $nickname... +set_maintenance_mode $nickname +echo DONE. +echo -n Getting current database info... +get_current_db_info $nickname +echo DONE. +echo -n Creating empty $dbname database on server $newdbhost... +create_empty_db $newdbhost $dbuser $dbpass $dbname +echo DONE +echo -n Copying $dbname database from $dbhost to $newdbhost... +transfer_data $dbhost $newdbhost $dbuser $dbpass $dbname +echo DONE +echo -n Updating the routing table for $nickname to use $dbname on $newdbhost... +update_routing_table $nickname $newdbhost +echo DONE +echo -n Flushing $nickname site from cache... +flush_site $nickname +echo DONE +echo -n Turning off maintenance mode on $nickname... +unset_maintenance_mode $nickname +echo DONE. diff --git a/scripts/settag.php b/scripts/settag.php index ca260f7bf9..19abce43c8 100644 --- a/scripts/settag.php +++ b/scripts/settag.php @@ -66,12 +66,12 @@ if ($i !== false) { } } else { print "Already set.\n"; - exit(-1); + exit(0); } } else { if (have_option('d', 'delete')) { // Delete print "No such tag.\n"; - exit(-1); + exit(0); } else { $tags[] = $tag; $result = $sn->setTags($tags); diff --git a/tests/oEmbedTest.php b/tests/oEmbedTest.php index b5e441c42f..1f1d5f826c 100644 --- a/tests/oEmbedTest.php +++ b/tests/oEmbedTest.php @@ -15,22 +15,22 @@ class oEmbedTest extends PHPUnit_Framework_TestCase public function setup() { - $this->old_oohembed = common_config('oohembed', 'endpoint'); + $this->old_ohembed = common_config('ohembed', 'endpoint'); } public function tearDown() { - $GLOBALS['config']['oohembed']['endpoint'] = $this->old_oohembed; + $GLOBALS['config']['oembed']['endpoint'] = $this->old_ohembed; } /** - * Test with oohembed DISABLED. + * Test with ohembed DISABLED. * * @dataProvider discoverableSources */ public function testoEmbed($url, $expectedType) { - $GLOBALS['config']['oohembed']['endpoint'] = false; + $GLOBALS['config']['oembed']['endpoint'] = false; $this->_doTest($url, $expectedType); } @@ -39,14 +39,14 @@ class oEmbedTest extends PHPUnit_Framework_TestCase * * @dataProvider fallbackSources */ - public function testoohEmbed($url, $expectedType) + public function testnoEmbed($url, $expectedType) { - $GLOBALS['config']['oohembed']['endpoint'] = $this->_endpoint(); + $GLOBALS['config']['oembed']['endpoint'] = $this->_endpoint(); $this->_doTest($url, $expectedType); } /** - * Get default oohembed endpoint. + * Get default oembed endpoint. * * @return string */ @@ -55,7 +55,7 @@ class oEmbedTest extends PHPUnit_Framework_TestCase $default = array(); $_server = 'localhost'; $_path = ''; require INSTALLDIR . '/lib/default.php'; - return $default['oohembed']['endpoint']; + return $default['oembed']['endpoint']; } /** @@ -113,7 +113,6 @@ class oEmbedTest extends PHPUnit_Framework_TestCase static public function discoverableSources() { $sources = array( - array('http://identi.ca/attachment/34437400', 'photo'), array('http://www.youtube.com/watch?v=eUgLR232Cnw', 'video'), array('http://vimeo.com/9283184', 'video'), @@ -125,16 +124,20 @@ class oEmbedTest extends PHPUnit_Framework_TestCase } /** - * Sample oEmbed targets that can be found via oohembed.com. + * Sample oEmbed targets that can be found via noembed.com. * Includes also discoverableSources() output. * * @return array */ static public function fallbackSources() { + $sources = array( - array('http://en.wikipedia.org/wiki/File:Wiki.png', 'link'), // @fixme in future there may be a native provider -- will change to 'photo' + array('https://github.com/git/git/commit/85e9c7e1d42849c5c3084a9da748608468310c0e', 'Github Commit'), // @fixme in future there may be a native provider -- will change to 'photo' ); + + $sources = array(); + return array_merge(self::discoverableSources(), $sources); } } diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 7f96d846c1..d2d07c4cec 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -1976,6 +1976,12 @@ display:block; width:auto; } +.profile_block .group_aliases .group_alias { + display:inline; + list-style-type: none; + font-style: italic; +} + .profile_block .entity_tags dt { display: inline; margin-right: 3px;